pub trait EncodeEcPrivateKey {
// Required method
fn to_sec1_der(&self) -> Result<SecretDocument>;
// Provided method
fn to_sec1_pem(&self, line_ending: LineEnding) -> Result<Zeroizing<String>> { ... }
}
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§
Sourcefn to_sec1_pem(&self, line_ending: LineEnding) -> Result<Zeroizing<String>>
fn to_sec1_pem(&self, line_ending: LineEnding) -> Result<Zeroizing<String>>
Serialize this private key as PEM-encoded SEC1 with the given LineEnding
.
To use the OS’s native line endings, pass Default::default()
.