pub trait EncodeEcPrivateKey {
    // Required method
    fn to_sec1_der(&self) -> Result<SecretDocument>;

    // Provided method
    fn write_sec1_der_file(&self, path: impl AsRef<Path>) -> Result<()> { ... }
}
Expand description

Serialize a EcPrivateKey to a SEC1 encoded document.

Required Methods§

source

fn to_sec1_der(&self) -> Result<SecretDocument>

Serialize a SecretDocument containing a SEC1-encoded private key.

Provided Methods§

source

fn write_sec1_der_file(&self, path: impl AsRef<Path>) -> Result<()>

Write ASN.1 DER-encoded SEC1 private key to the given path.

Implementors§