Enum simple_asn1::ASN1Block
source · [−]pub enum ASN1Block {
Show 18 variants
Boolean(usize, bool),
Integer(usize, BigInt),
BitString(usize, usize, Vec<u8>),
OctetString(usize, Vec<u8>),
Null(usize),
ObjectIdentifier(usize, OID),
UTF8String(usize, String),
PrintableString(usize, String),
TeletexString(usize, String),
IA5String(usize, String),
UTCTime(usize, DateTime<Utc>),
GeneralizedTime(usize, DateTime<Utc>),
UniversalString(usize, String),
BMPString(usize, String),
Sequence(usize, Vec<ASN1Block>),
Set(usize, Vec<ASN1Block>),
Explicit(ASN1Class, usize, BigUint, Box<ASN1Block>),
Unknown(ASN1Class, bool, usize, BigUint, Vec<u8>),
}
Expand description
A primitive block from ASN.1.
Primitive blocks all contain the offset from the beginning of the parsed document, followed by whatever data is associated with the block. The latter should be fairly self-explanatory, so let’s discuss the offset.
The offset is only valid during the reading process. It is ignored for
the purposes of encoding blocks into their binary form. It is also
ignored for the purpose of comparisons via ==
. It is included entirely
to support the parsing of things like X509 certificates, in which it is
necessary to know when particular blocks end.
The ASN1Class
of explicitly tagged blocks is either Application
,
ContextSpecific
or Private
. Unknown
can have any class.
The class of all other variants is Universal
.
Variants
Boolean(usize, bool)
Integer(usize, BigInt)
BitString(usize, usize, Vec<u8>)
OctetString(usize, Vec<u8>)
Null(usize)
ObjectIdentifier(usize, OID)
UTF8String(usize, String)
PrintableString(usize, String)
TeletexString(usize, String)
IA5String(usize, String)
UTCTime(usize, DateTime<Utc>)
GeneralizedTime(usize, DateTime<Utc>)
UniversalString(usize, String)
BMPString(usize, String)
Sequence(usize, Vec<ASN1Block>)
Set(usize, Vec<ASN1Block>)
Explicit(ASN1Class, usize, BigUint, Box<ASN1Block>)
An explicitly tagged block.
The class can be either Application
, ContextSpecific
or Private
.
The other parameters are offset
, tag
and content
.
This block is always constructed
.
Unknown(ASN1Class, bool, usize, BigUint, Vec<u8>)
An unkown block.
The parameters are class
, constructed
, offset
, tag
and
content
.
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ASN1Block
impl Send for ASN1Block
impl Sync for ASN1Block
impl Unpin for ASN1Block
impl UnwindSafe for ASN1Block
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more