Struct libp2p::identity::ed25519::Keypair [−][src]
pub struct Keypair(_);
An Ed25519 keypair.
Implementations
impl Keypair
[src]
impl Keypair
[src]pub fn generate() -> Keypair
[src]
Generate a new Ed25519 keypair.
pub fn encode(&self) -> [u8; 64]
[src]
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.
pub fn decode(kp: &mut [u8]) -> Result<Keypair, DecodingError>
[src]
Decode a keypair from the format produced by encode
,
zeroing the input on success.
pub fn sign(&self, msg: &[u8]) -> Vec<u8, Global>
[src]
Sign a message using the private key of this keypair.
pub fn public(&self) -> PublicKey
[src]
Get the public key of this keypair.
pub fn secret(&self) -> SecretKey
[src]
Get the secret key of this keypair.