Struct libp2p_core::identity::ed25519::Keypair
source · pub struct Keypair(_);
Expand description
An Ed25519 keypair.
Implementations§
source§impl Keypair
impl Keypair
sourcepub fn encode(&self) -> [u8; 64]
pub fn encode(&self) -> [u8; 64]
Encode the keypair into a byte array by concatenating the bytes of the secret scalar and the compressed public point, an informal standard for encoding Ed25519 keypairs.
sourcepub fn decode(kp: &mut [u8]) -> Result<Keypair, DecodingError>
pub fn decode(kp: &mut [u8]) -> Result<Keypair, DecodingError>
Decode a keypair from the binary format
produced by Keypair::encode
, zeroing the input on success.
Note that this binary format is the same as ed25519_dalek
’s and ed25519_zebra
’s.