Re-exports§
pub extern crate bit_vec;pub extern crate num_bigint;pub extern crate yasna;
Modules§
- algorithms
- cmpv2
- Rust implementation of the Certificate Management Protocol (CMP) as described in RFC 4210
- cms
- crmf
- Rust implementation of the Certificate Request Message Format (CRMF) as described in RFC 4211.
- derives
- oid
- pem
- pkcs10
- rfc3281
- types
- x509
Macros§
- define_
content_ with_ associated_ type - define_
version - derive_
sequence - derive_
sequence_ of - derive_
set - derive_
set_ of - enum_
oid - enum_
subtype - impl_
content_ with_ associated_ type - content_with_associated_type helps us define enums where the
typeof the variant could be another enumerated type, like a subset of oids or say a CMS version etc.
Structs§
Traits§
- DerWrite
- FromBer
- Trait for objects that can be deserialized from a BER representation. A
wrapper around yasna’s
FromBERtrait that sets BER mode and eliminates theparse_der / from_berboilerplate. - FromDer
- Trait for objects that can be deserialized from a DER representation. A
wrapper around yasna’s
FromBERtrait that sets DER mode and eliminates theparse_der / from_berboilerplate. - ToDer