Lines Matching refs:ASN
2 ASN.1 library for Python
10 This is a free and open source implementation of ASN.1 types and codecs
14 [ASN.1 specification](https://www.itu.int/rec/dologin_pub.asp?lang=e&id=T-REC-X.208-198811-W!!PDF-E…
19 * Generic implementation of ASN.1 types (X.208)
21 * Dumps/loads ASN.1 structures from Python types
24 * Contributed ASN.1 compiler [Asn1ate](https://github.com/kimgr/asn1ate)
29 ASN.1 solves the data serialisation problem. This solution was
31 have the luxury of wasting bits. That is why ASN.1 is designed
40 Quite a number of books cover the topic of ASN.1.
48 complicated ASN.1 system and to represent it on the Python terms.
53 With pyasn1 you can build Python objects from ASN.1 data structures.
54 For example, the following ASN.1 data structure:
83 It is in the spirit of ASN.1 to take abstract data description
85 Once you have your ASN.1 data structure expressed in Python, you
86 can use it along the lines of similar Python type (e.g. ASN.1
100 Part of the power of ASN.1 comes from its serialisation features. You
110 Conversely, you can turn serialised ASN.1 content, as received from
133 list, dict etc.). But ASN.1 types exhibit more complicated behaviour.
143 Or vice-versa -- you can initialize an ASN.1 structure from a tree of
156 With ASN.1 design, serialisation codecs are decoupled from data objects,
157 so you could turn every single ASN.1 object into many different
164 compiled ASN.1 modules for different protocols and file formats