Type Alias SpkiPublicKeyBytes

Source
pub type SpkiPublicKeyBytes = Bytes<SpkiPublicKeyDerContentFormat>;
Expand description

SpkiPublicKeyBytes is a type alias for Bytes with SpkiPublicKeyDerContentFormat. This is used for SPKI public keys in DER format.

Aliased Type§

struct SpkiPublicKeyBytes {
    inner: Vec<u8>,
    _marker: PhantomData<SpkiPublicKeyDerContentFormat>,
}

Fields§

§inner: Vec<u8>§_marker: PhantomData<SpkiPublicKeyDerContentFormat>