Trait ed25519_dalek::pkcs8::EncodePrivateKey
pub trait EncodePrivateKey {
// Required method
fn to_pkcs8_der(&self) -> Result<SecretDocument, Error>;
}
Available on crate features
pkcs8
and alloc
only.Expand description
Serialize a private key object to a PKCS#8 encoded document.
Required Methods§
fn to_pkcs8_der(&self) -> Result<SecretDocument, Error>
fn to_pkcs8_der(&self) -> Result<SecretDocument, Error>
Serialize a SecretDocument
containing a PKCS#8-encoded private key.