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§
Sourcefn to_sec1_der(&self) -> Result<SecretDocument>
fn to_sec1_der(&self) -> Result<SecretDocument>
Serialize a SecretDocument
containing a SEC1-encoded private key.
Provided Methods§
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.