Trait sec1::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§
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§
Object Safety§
This trait is not object safe.