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, PrimitiveDateTime),
GeneralizedTime(usize, PrimitiveDateTime),
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, PrimitiveDateTime)
GeneralizedTime(usize, PrimitiveDateTime)
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 Freeze for ASN1Block
impl RefUnwindSafe for ASN1Block
impl Send for ASN1Block
impl Sync for ASN1Block
impl Unpin for ASN1Block
impl UnwindSafe for ASN1Block
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)