Trait EncodeEcPrivateKey

Source
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.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§