1 2.. _type.univ: 3 4Universal types 5--------------- 6 7The ASN.1 language defines a collection of core data types 8also known as *universal* types. 9 10Some of these types behave like a scalar (e.g. *simple* types) while 11the rest are structured types (the standard calls them *constructed*). 12 13Example of simple types include :ref:`Integer <univ.Integer>` or 14:ref:`OctetString <univ.OctetString>`. Constructed types like 15:ref:`Sequence <univ.Sequence>` embed other types, both simple 16and constructed. 17 18.. toctree:: 19 :maxdepth: 2 20 21 /pyasn1/type/univ/integer 22 /pyasn1/type/univ/boolean 23 /pyasn1/type/univ/bitstring 24 /pyasn1/type/univ/octetstring 25 /pyasn1/type/univ/null 26 /pyasn1/type/univ/objectidentifier 27 /pyasn1/type/univ/real 28 /pyasn1/type/univ/enumerated 29 /pyasn1/type/univ/any 30 /pyasn1/type/univ/setof 31 /pyasn1/type/univ/sequenceof 32 /pyasn1/type/univ/set 33 /pyasn1/type/univ/sequence 34 /pyasn1/type/univ/choice 35