affinidi-secrets-resolver 0.5.3

Common utilities for Affinidi Trust Development Kit.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Crypto-related Secret generation methods
//!
//! These modules implement `Secret::generate_*` methods that use
//! `affinidi-crypto` for the underlying key operations.

#[cfg(feature = "ed25519")]
pub mod ed25519;

#[cfg(feature = "p256")]
pub mod p256;

#[cfg(feature = "k256")]
pub mod secp256k1;

#[cfg(feature = "p384")]
pub mod p384;