Struct libp2p::core::identity::rsa::Keypair [−][src]
pub struct Keypair(_);
An RSA keypair.
Implementations
impl Keypair
[src]
impl Keypair
[src]pub fn from_pkcs8(der: &mut [u8]) -> Result<Keypair, DecodingError>
[src]
Decode an RSA keypair from a DER-encoded private key in PKCS#8 PrivateKeyInfo format (i.e. unencrypted) as defined in RFC5208.
pub fn public(&self) -> PublicKey
[src]
Get the public key from the keypair.
pub fn sign(&self, data: &[u8]) -> Result<Vec<u8, Global>, SigningError>
[src]
Sign a message with this keypair.