Home
last modified time | relevance | path

Searched refs:OctetBitString (Results 1 – 10 of 10) sorted by relevance

/external/python/asn1crypto/asn1crypto/
Dcms.py46 OctetBitString,
76 ('signature', OctetBitString),
193 ('issuer_uid', OctetBitString, {'optional': True}),
227 ('issuer_unique_id', OctetBitString, {'optional': True}),
236 ('signature', OctetBitString),
253 ('object_digest', OctetBitString),
456 ('issuer_unique_id', OctetBitString, {'optional': True}),
468 ('signature', OctetBitString),
Dcsr.py19 OctetBitString,
95 ('signature', OctetBitString),
Docsp.py26 OctetBitString,
210 ('signature', OctetBitString),
595 ('signature', OctetBitString),
Dcrl.py23 OctetBitString,
291 ('signature', OctetBitString),
Dkeys.py34 OctetBitString,
202 class ECPointBitString(OctetBitString, _ECPoint):
300 ('seed', OctetBitString, {'optional': True}),
Dx509.py47 OctetBitString,
677 'unique_identifier': OctetBitString,
2133 ('issuer_unique_id', OctetBitString, {'implicit': 1, 'optional': True}),
2134 ('subject_unique_id', OctetBitString, {'implicit': 2, 'optional': True}),
2143 ('signature_value', OctetBitString),
Dcore.py2344 class OctetBitString(Constructable, Castable, Primitive): class
2423 super(OctetBitString, self)._copy(other, copy_func)
/external/python/asn1crypto/tests/
Dtest_core.py348 (core.OctetString(b''), core.OctetBitString(b''), False),
350 (core.ParsableOctetBitString(b'12'), core.OctetBitString(b'12'), True),
535 a = core.OctetBitString(b'\x00\x01\x02\x03')
880 v = core.OctetBitString.load(b'\x23\x80\x03\x02\x00\x04\x00\x00')
1111 a = core.OctetBitString.load(b'\x03\x02\x04\xcb')
1125 a = core.OctetBitString.load(data)
1132 a = core.OctetBitString.load(b'\x23\x80\x03\x05\x05\x74\x65\x73\x74\x00\x00')
1144 core.OctetBitString.load(enc_bytes).native
/external/python/asn1crypto/docs/
Duniversal_types.md85 | `OctetBitString` | `bytes` (`str`) | |
91 function the same as `OctetString` and `OctetBitString`, however they also
101 from asn1crypto.core import BitString, OctetBitString, IntegerBitString
111 octet = bit.cast(OctetBitString)
566 of `Any`, however occasionally it is an `OctetString` or `OctetBitString`.
574 situations where the value field should be an `OctetString` or `OctetBitString`,
/external/python/asn1crypto/
Dchangelog.md210 `core.OctetBitString`