pub enum Version {
V1,
V2,
}
Expand description
Version identifier for PKCS#8 documents.
(RFC 5958 designates 0
and 1
as the only valid versions for PKCS#8 documents)
Variants§
V1
Denotes PKCS#8 v1: no public key field.
V2
Denotes PKCS#8 v2: OneAsymmetricKey
with public key field.
Implementations§
Trait Implementations§
source§impl Encode for Version
impl Encode for Version
source§fn encoded_len(&self) -> Result<Length>
fn encoded_len(&self) -> Result<Length>
Compute the length of this value in bytes when encoded as ASN.1 DER.
source§fn encode(&self, writer: &mut dyn Writer) -> Result<()>
fn encode(&self, writer: &mut dyn Writer) -> Result<()>
Encode this value as ASN.1 DER using the provided
Writer
.source§fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
Encode this value to the provided byte slice, returning a sub-slice
containing the encoded message. Read more