# coding: utf-8 """ ASN.1 type classes for PDF signature structures. Adds extra oid mapping and value parsing to asn1crypto.x509.Extension() and asn1crypto.xms.CMSAttribute(). """ from __future__ import unicode_literals, division, absolute_import, print_function from .cms import CMSAttributeType, CMSAttribute from .core import ( Boolean, Integer, Null, ObjectIdentifier, OctetString, Sequence, SequenceOf, SetOf, ) from .crl import CertificateList from .ocsp import OCSPResponse from .x509 import ( Extension, ExtensionId, GeneralName, KeyPurposeId, ) class AdobeArchiveRevInfo(Sequence): _fields = [ ('version', Integer) ] class AdobeTimestamp(Sequence): _fields = [ ('version', Integer), ('location', GeneralName), ('requires_auth', Boolean, {'optional': True, 'default': False}), ] class OtherRevInfo(Sequence): _fields = [ ('type', ObjectIdentifier), ('value', OctetString), ] class SequenceOfCertificateList(SequenceOf): _child_spec = CertificateList class SequenceOfOCSPResponse(SequenceOf): _child_spec = OCSPResponse class SequenceOfOtherRevInfo(SequenceOf): _child_spec = OtherRevInfo class RevocationInfoArchival(Sequence): _fields = [ ('crl', SequenceOfCertificateList, {'explicit': 0, 'optional': True}), ('ocsp', SequenceOfOCSPResponse, {'explicit': 1, 'optional': True}), ('other_rev_info', SequenceOfOtherRevInfo, {'explicit': 2, 'optional': True}), ] class SetOfRevocationInfoArchival(SetOf): _child_spec = RevocationInfoArchival ExtensionId._map['1.2.840.113583.1.1.9.2'] = 'adobe_archive_rev_info' ExtensionId._map['1.2.840.113583.1.1.9.1'] = 'adobe_timestamp' ExtensionId._map['1.2.840.113583.1.1.10'] = 'adobe_ppklite_credential' Extension._oid_specs['adobe_archive_rev_info'] = AdobeArchiveRevInfo Extension._oid_specs['adobe_timestamp'] = AdobeTimestamp Extension._oid_specs['adobe_ppklite_credential'] = Null KeyPurposeId._map['1.2.840.113583.1.1.5'] = 'pdf_signing' CMSAttributeType._map['1.2.840.113583.1.1.8'] = 'adobe_revocation_info_archival' CMSAttribute._oid_specs['adobe_revocation_info_archival'] = SetOfRevocationInfoArchival
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
__pycache__ | Folder | 0755 |
|
|
_perf | Folder | 0755 |
|
|
__init__.py | File | 209 B | 0644 |
|
_elliptic_curve.py | File | 9.2 KB | 0644 |
|
_errors.py | File | 967 B | 0644 |
|
_ffi.py | File | 738 B | 0644 |
|
_inet.py | File | 4.55 KB | 0644 |
|
_int.py | File | 4.51 KB | 0644 |
|
_iri.py | File | 8.43 KB | 0644 |
|
_ordereddict.py | File | 4.43 KB | 0644 |
|
_teletex_codec.py | File | 4.93 KB | 0644 |
|
_types.py | File | 939 B | 0644 |
|
algos.py | File | 33.3 KB | 0644 |
|
cms.py | File | 24.53 KB | 0644 |
|
core.py | File | 153.57 KB | 0644 |
|
crl.py | File | 15.73 KB | 0644 |
|
csr.py | File | 2.09 KB | 0644 |
|
keys.py | File | 34.36 KB | 0644 |
|
ocsp.py | File | 17.38 KB | 0644 |
|
parser.py | File | 8.93 KB | 0644 |
|
pdf.py | File | 2.2 KB | 0644 |
|
pem.py | File | 6 KB | 0644 |
|
pkcs12.py | File | 4.46 KB | 0644 |
|
tsp.py | File | 7.64 KB | 0644 |
|
util.py | File | 17.62 KB | 0644 |
|
version.py | File | 154 B | 0644 |
|
x509.py | File | 90.14 KB | 0644 |
|