Struct libp2p_core::identity::ed25519::SecretKey [−][src]
pub struct SecretKey(_);
An Ed25519 secret key.
Implementations
impl SecretKey
[src]
impl SecretKey
[src]pub fn generate() -> SecretKey
[src]
Generate a new Ed25519 secret key.
pub fn from_bytes(
sk_bytes: impl AsMut<[u8]>
) -> Result<SecretKey, DecodingError>
[src]
sk_bytes: impl AsMut<[u8]>
) -> Result<SecretKey, DecodingError>
Create an Ed25519 secret key from a byte slice, zeroing the input on success. If the bytes do not constitute a valid Ed25519 secret key, an error is returned.