├── .circleci └── config.yml ├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── SECURITY.md ├── asn1crypto ├── __init__.py ├── _errors.py ├── _inet.py ├── _int.py ├── _iri.py ├── _ordereddict.py ├── _teletex_codec.py ├── _types.py ├── algos.py ├── cms.py ├── core.py ├── crl.py ├── csr.py ├── keys.py ├── ocsp.py ├── parser.py ├── pdf.py ├── pem.py ├── pkcs12.py ├── tsp.py ├── util.py ├── version.py └── x509.py ├── changelog.md ├── dev ├── __init__.py ├── _import.py ├── _pep425.py ├── _task.py ├── build.py ├── ci-cleanup.py ├── ci-driver.py ├── ci.py ├── codecov.json ├── coverage.py ├── deps.py ├── lint.py ├── pyenv-install.py ├── python-install.py ├── release.py ├── tests.py └── version.py ├── docs ├── pem.md ├── readme.md └── universal_types.md ├── readme.md ├── requires ├── ci ├── coverage ├── lint └── release ├── run.py ├── setup.py ├── tests ├── LICENSE ├── __init__.py ├── __main__.py ├── _unittest_compat.py ├── fixtures │ ├── 9999-years-rsa-cert.pem │ ├── DSAParametersInheritedCACert.crt │ ├── admin.ch.crt │ ├── aesccm_algo.der │ ├── certbag.der │ ├── chromium │ │ ├── ndn.ca.crt │ │ ├── punycodetest.pem │ │ ├── readme.md │ │ └── subjectAltName_sanity_check.pem │ ├── cms-compressed.der │ ├── cms-compressed.pem │ ├── cms-digested.der │ ├── cms-digested.pem │ ├── cms-encrypted.der │ ├── cms-encrypted.pem │ ├── cms-enveloped.der │ ├── cms-enveloped.pem │ ├── cms-signed-digested.der │ ├── cms-signed-digested.pem │ ├── cms-signed-indefinite-length.der │ ├── cms-signed.der │ ├── cms-signed.pem │ ├── eid2011.crl │ ├── example-attr-cert.der │ ├── geotrust_certs │ │ ├── Equifax_Secure_Certificate_Authority.crt │ │ ├── Equifax_Secure_Certificate_Authority.pem │ │ ├── GeoTrust_EV_SSL_CA_-_G4.cer │ │ ├── GeoTrust_EV_SSL_CA_-_G4.crt │ │ ├── GeoTrust_Primary_CA.crt │ │ ├── GeoTrust_Primary_CA.pem │ │ ├── GeoTrust_Universal_CA.crt │ │ ├── GeoTrust_Universal_CA.pem │ │ ├── codex.crt │ │ └── readme.md │ ├── globalsign_example_keys │ │ ├── IssuingCA-der.cer │ │ ├── IssuingCA.cer │ │ ├── IssuingCA.key │ │ ├── SSL1-der.cer │ │ ├── SSL1.cer │ │ ├── SSL1.key │ │ ├── SSL2-der.cer │ │ ├── SSL2.cer │ │ ├── SSL2.key │ │ ├── SSL3-der.cer │ │ ├── SSL3.cer │ │ ├── SSL3.key │ │ ├── readme.md │ │ ├── rootCA-der.cer │ │ ├── rootCA.cer │ │ └── rootCA.key │ ├── invalid_email_tag.pem │ ├── keys │ │ ├── readme.md │ │ ├── test-aes128-der.key │ │ ├── test-aes128.key │ │ ├── test-der.crt │ │ ├── test-der.key │ │ ├── test-dsa-der.crt │ │ ├── test-dsa-der.key │ │ ├── test-dsa.crt │ │ ├── test-dsa.key │ │ ├── test-dsa.param │ │ ├── test-ec-der.crt │ │ ├── test-ec-der.key │ │ ├── test-ec-named-der.crt │ │ ├── test-ec-named-der.key │ │ ├── test-ec-named.crt │ │ ├── test-ec-named.key │ │ ├── test-ec.crt │ │ ├── test-ec.key │ │ ├── test-ed25519.crt │ │ ├── test-ed25519.key │ │ ├── test-ed448.crt │ │ ├── test-ed448.key │ │ ├── test-inter-der.crt │ │ ├── test-inter.crt │ │ ├── test-pkcs8-der.key │ │ ├── test-pkcs8-dsa-der.key │ │ ├── test-pkcs8-dsa.key │ │ ├── test-pkcs8-ec-der.key │ │ ├── test-pkcs8-ec-named-der.key │ │ ├── test-pkcs8-ec-named.key │ │ ├── test-pkcs8-ec.key │ │ ├── test-pkcs8.key │ │ ├── test-public-der.key │ │ ├── test-public-dsa-der.key │ │ ├── test-public-dsa.key │ │ ├── test-public-ec-der.key │ │ ├── test-public-ec-named-der.key │ │ ├── test-public-ec-named.key │ │ ├── test-public-ec.key │ │ ├── test-public-rsa-der.key │ │ ├── test-public-rsa.key │ │ ├── test-public-rsapss-der.key │ │ ├── test-public-rsapss.key │ │ ├── test-public.key │ │ ├── test-rc2.p12 │ │ ├── test-rsapss-der.key │ │ ├── test-rsapss.crt │ │ ├── test-rsapss.key │ │ ├── test-third-der.crt │ │ ├── test-third.crt │ │ ├── test-validity.crt │ │ ├── test.crt │ │ └── test.key │ ├── lets_encrypt │ │ ├── isrgrootx1.pem │ │ ├── letsencryptauthorityx1.pem │ │ ├── letsencryptauthorityx2.pem │ │ └── readme.md │ ├── meca2_compressed.der │ ├── message.der │ ├── message.pem │ ├── message.txt │ ├── mozilla-generated-by-openssl.pkcs7.der │ ├── ocsp-with-pkup.pem │ ├── ocsp_request │ ├── ocsp_response │ ├── pkcs7-signed-digested.der │ ├── pkcs7-signed-digested.pem │ ├── pkcs7-signed.der │ ├── pkcs7-signed.pem │ ├── rc2_algo.der │ ├── rc5_algo.der │ ├── readme.md │ ├── rfc3739.crt │ ├── scrypt_algo.der │ ├── self-signed-repeated-subject-fields.der │ ├── sender_dummycorp.com.crt │ ├── smime-signature-generated-by-thunderbird.p7s │ ├── test-inter-der.csr │ ├── test-inter.csr │ ├── test-third-der.csr │ ├── test-third.csr │ ├── test-tripledes.p12 │ ├── test-windows-host.csr │ ├── tsp_request │ ├── tsp_response │ └── universal │ │ └── object_identifier.der ├── readme.md ├── setup.py ├── test_algos.py ├── test_cms.py ├── test_core.py ├── test_crl.py ├── test_csr.py ├── test_init.py ├── test_keys.py ├── test_ocsp.py ├── test_parser.py ├── test_pem.py ├── test_pkcs12.py ├── test_tsp.py ├── test_util.py ├── test_x509.py └── unittest_data.py └── tox.ini /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/LICENSE -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/SECURITY.md -------------------------------------------------------------------------------- /asn1crypto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/asn1crypto/__init__.py -------------------------------------------------------------------------------- /asn1crypto/_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/asn1crypto/_errors.py -------------------------------------------------------------------------------- /asn1crypto/_inet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/asn1crypto/_inet.py -------------------------------------------------------------------------------- /asn1crypto/_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/asn1crypto/_int.py -------------------------------------------------------------------------------- /asn1crypto/_iri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/asn1crypto/_iri.py -------------------------------------------------------------------------------- /asn1crypto/_ordereddict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/asn1crypto/_ordereddict.py -------------------------------------------------------------------------------- /asn1crypto/_teletex_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/asn1crypto/_teletex_codec.py -------------------------------------------------------------------------------- /asn1crypto/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/asn1crypto/_types.py -------------------------------------------------------------------------------- /asn1crypto/algos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/asn1crypto/algos.py -------------------------------------------------------------------------------- /asn1crypto/cms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/asn1crypto/cms.py -------------------------------------------------------------------------------- /asn1crypto/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/asn1crypto/core.py -------------------------------------------------------------------------------- /asn1crypto/crl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/asn1crypto/crl.py -------------------------------------------------------------------------------- /asn1crypto/csr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/asn1crypto/csr.py -------------------------------------------------------------------------------- /asn1crypto/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/asn1crypto/keys.py -------------------------------------------------------------------------------- /asn1crypto/ocsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/asn1crypto/ocsp.py -------------------------------------------------------------------------------- /asn1crypto/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/asn1crypto/parser.py -------------------------------------------------------------------------------- /asn1crypto/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/asn1crypto/pdf.py -------------------------------------------------------------------------------- /asn1crypto/pem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/asn1crypto/pem.py -------------------------------------------------------------------------------- /asn1crypto/pkcs12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/asn1crypto/pkcs12.py -------------------------------------------------------------------------------- /asn1crypto/tsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/asn1crypto/tsp.py -------------------------------------------------------------------------------- /asn1crypto/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/asn1crypto/util.py -------------------------------------------------------------------------------- /asn1crypto/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/asn1crypto/version.py -------------------------------------------------------------------------------- /asn1crypto/x509.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/asn1crypto/x509.py -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/changelog.md -------------------------------------------------------------------------------- /dev/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/dev/__init__.py -------------------------------------------------------------------------------- /dev/_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/dev/_import.py -------------------------------------------------------------------------------- /dev/_pep425.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/dev/_pep425.py -------------------------------------------------------------------------------- /dev/_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/dev/_task.py -------------------------------------------------------------------------------- /dev/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/dev/build.py -------------------------------------------------------------------------------- /dev/ci-cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/dev/ci-cleanup.py -------------------------------------------------------------------------------- /dev/ci-driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/dev/ci-driver.py -------------------------------------------------------------------------------- /dev/ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/dev/ci.py -------------------------------------------------------------------------------- /dev/codecov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/dev/codecov.json -------------------------------------------------------------------------------- /dev/coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/dev/coverage.py -------------------------------------------------------------------------------- /dev/deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/dev/deps.py -------------------------------------------------------------------------------- /dev/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/dev/lint.py -------------------------------------------------------------------------------- /dev/pyenv-install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/dev/pyenv-install.py -------------------------------------------------------------------------------- /dev/python-install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/dev/python-install.py -------------------------------------------------------------------------------- /dev/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/dev/release.py -------------------------------------------------------------------------------- /dev/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/dev/tests.py -------------------------------------------------------------------------------- /dev/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/dev/version.py -------------------------------------------------------------------------------- /docs/pem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/docs/pem.md -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/docs/readme.md -------------------------------------------------------------------------------- /docs/universal_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/docs/universal_types.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/readme.md -------------------------------------------------------------------------------- /requires/ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/requires/ci -------------------------------------------------------------------------------- /requires/coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/requires/coverage -------------------------------------------------------------------------------- /requires/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/requires/lint -------------------------------------------------------------------------------- /requires/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/requires/release -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/run.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/setup.py -------------------------------------------------------------------------------- /tests/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/LICENSE -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/__main__.py -------------------------------------------------------------------------------- /tests/_unittest_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/_unittest_compat.py -------------------------------------------------------------------------------- /tests/fixtures/9999-years-rsa-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/9999-years-rsa-cert.pem -------------------------------------------------------------------------------- /tests/fixtures/DSAParametersInheritedCACert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/DSAParametersInheritedCACert.crt -------------------------------------------------------------------------------- /tests/fixtures/admin.ch.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/admin.ch.crt -------------------------------------------------------------------------------- /tests/fixtures/aesccm_algo.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/aesccm_algo.der -------------------------------------------------------------------------------- /tests/fixtures/certbag.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/certbag.der -------------------------------------------------------------------------------- /tests/fixtures/chromium/ndn.ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/chromium/ndn.ca.crt -------------------------------------------------------------------------------- /tests/fixtures/chromium/punycodetest.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/chromium/punycodetest.pem -------------------------------------------------------------------------------- /tests/fixtures/chromium/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/chromium/readme.md -------------------------------------------------------------------------------- /tests/fixtures/chromium/subjectAltName_sanity_check.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/chromium/subjectAltName_sanity_check.pem -------------------------------------------------------------------------------- /tests/fixtures/cms-compressed.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/cms-compressed.der -------------------------------------------------------------------------------- /tests/fixtures/cms-compressed.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/cms-compressed.pem -------------------------------------------------------------------------------- /tests/fixtures/cms-digested.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/cms-digested.der -------------------------------------------------------------------------------- /tests/fixtures/cms-digested.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/cms-digested.pem -------------------------------------------------------------------------------- /tests/fixtures/cms-encrypted.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/cms-encrypted.der -------------------------------------------------------------------------------- /tests/fixtures/cms-encrypted.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/cms-encrypted.pem -------------------------------------------------------------------------------- /tests/fixtures/cms-enveloped.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/cms-enveloped.der -------------------------------------------------------------------------------- /tests/fixtures/cms-enveloped.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/cms-enveloped.pem -------------------------------------------------------------------------------- /tests/fixtures/cms-signed-digested.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/cms-signed-digested.der -------------------------------------------------------------------------------- /tests/fixtures/cms-signed-digested.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/cms-signed-digested.pem -------------------------------------------------------------------------------- /tests/fixtures/cms-signed-indefinite-length.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/cms-signed-indefinite-length.der -------------------------------------------------------------------------------- /tests/fixtures/cms-signed.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/cms-signed.der -------------------------------------------------------------------------------- /tests/fixtures/cms-signed.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/cms-signed.pem -------------------------------------------------------------------------------- /tests/fixtures/eid2011.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/eid2011.crl -------------------------------------------------------------------------------- /tests/fixtures/example-attr-cert.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/example-attr-cert.der -------------------------------------------------------------------------------- /tests/fixtures/geotrust_certs/Equifax_Secure_Certificate_Authority.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/geotrust_certs/Equifax_Secure_Certificate_Authority.crt -------------------------------------------------------------------------------- /tests/fixtures/geotrust_certs/Equifax_Secure_Certificate_Authority.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/geotrust_certs/Equifax_Secure_Certificate_Authority.pem -------------------------------------------------------------------------------- /tests/fixtures/geotrust_certs/GeoTrust_EV_SSL_CA_-_G4.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/geotrust_certs/GeoTrust_EV_SSL_CA_-_G4.cer -------------------------------------------------------------------------------- /tests/fixtures/geotrust_certs/GeoTrust_EV_SSL_CA_-_G4.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/geotrust_certs/GeoTrust_EV_SSL_CA_-_G4.crt -------------------------------------------------------------------------------- /tests/fixtures/geotrust_certs/GeoTrust_Primary_CA.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/geotrust_certs/GeoTrust_Primary_CA.crt -------------------------------------------------------------------------------- /tests/fixtures/geotrust_certs/GeoTrust_Primary_CA.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/geotrust_certs/GeoTrust_Primary_CA.pem -------------------------------------------------------------------------------- /tests/fixtures/geotrust_certs/GeoTrust_Universal_CA.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/geotrust_certs/GeoTrust_Universal_CA.crt -------------------------------------------------------------------------------- /tests/fixtures/geotrust_certs/GeoTrust_Universal_CA.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/geotrust_certs/GeoTrust_Universal_CA.pem -------------------------------------------------------------------------------- /tests/fixtures/geotrust_certs/codex.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/geotrust_certs/codex.crt -------------------------------------------------------------------------------- /tests/fixtures/geotrust_certs/readme.md: -------------------------------------------------------------------------------- 1 | Example EV certificate and chain. 2 | -------------------------------------------------------------------------------- /tests/fixtures/globalsign_example_keys/IssuingCA-der.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/globalsign_example_keys/IssuingCA-der.cer -------------------------------------------------------------------------------- /tests/fixtures/globalsign_example_keys/IssuingCA.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/globalsign_example_keys/IssuingCA.cer -------------------------------------------------------------------------------- /tests/fixtures/globalsign_example_keys/IssuingCA.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/globalsign_example_keys/IssuingCA.key -------------------------------------------------------------------------------- /tests/fixtures/globalsign_example_keys/SSL1-der.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/globalsign_example_keys/SSL1-der.cer -------------------------------------------------------------------------------- /tests/fixtures/globalsign_example_keys/SSL1.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/globalsign_example_keys/SSL1.cer -------------------------------------------------------------------------------- /tests/fixtures/globalsign_example_keys/SSL1.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/globalsign_example_keys/SSL1.key -------------------------------------------------------------------------------- /tests/fixtures/globalsign_example_keys/SSL2-der.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/globalsign_example_keys/SSL2-der.cer -------------------------------------------------------------------------------- /tests/fixtures/globalsign_example_keys/SSL2.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/globalsign_example_keys/SSL2.cer -------------------------------------------------------------------------------- /tests/fixtures/globalsign_example_keys/SSL2.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/globalsign_example_keys/SSL2.key -------------------------------------------------------------------------------- /tests/fixtures/globalsign_example_keys/SSL3-der.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/globalsign_example_keys/SSL3-der.cer -------------------------------------------------------------------------------- /tests/fixtures/globalsign_example_keys/SSL3.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/globalsign_example_keys/SSL3.cer -------------------------------------------------------------------------------- /tests/fixtures/globalsign_example_keys/SSL3.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/globalsign_example_keys/SSL3.key -------------------------------------------------------------------------------- /tests/fixtures/globalsign_example_keys/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/globalsign_example_keys/readme.md -------------------------------------------------------------------------------- /tests/fixtures/globalsign_example_keys/rootCA-der.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/globalsign_example_keys/rootCA-der.cer -------------------------------------------------------------------------------- /tests/fixtures/globalsign_example_keys/rootCA.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/globalsign_example_keys/rootCA.cer -------------------------------------------------------------------------------- /tests/fixtures/globalsign_example_keys/rootCA.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/globalsign_example_keys/rootCA.key -------------------------------------------------------------------------------- /tests/fixtures/invalid_email_tag.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/invalid_email_tag.pem -------------------------------------------------------------------------------- /tests/fixtures/keys/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/readme.md -------------------------------------------------------------------------------- /tests/fixtures/keys/test-aes128-der.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-aes128-der.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-aes128.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-aes128.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-der.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-der.crt -------------------------------------------------------------------------------- /tests/fixtures/keys/test-der.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-der.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-dsa-der.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-dsa-der.crt -------------------------------------------------------------------------------- /tests/fixtures/keys/test-dsa-der.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-dsa-der.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-dsa.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-dsa.crt -------------------------------------------------------------------------------- /tests/fixtures/keys/test-dsa.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-dsa.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-dsa.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-dsa.param -------------------------------------------------------------------------------- /tests/fixtures/keys/test-ec-der.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-ec-der.crt -------------------------------------------------------------------------------- /tests/fixtures/keys/test-ec-der.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-ec-der.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-ec-named-der.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-ec-named-der.crt -------------------------------------------------------------------------------- /tests/fixtures/keys/test-ec-named-der.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-ec-named-der.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-ec-named.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-ec-named.crt -------------------------------------------------------------------------------- /tests/fixtures/keys/test-ec-named.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-ec-named.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-ec.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-ec.crt -------------------------------------------------------------------------------- /tests/fixtures/keys/test-ec.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-ec.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-ed25519.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-ed25519.crt -------------------------------------------------------------------------------- /tests/fixtures/keys/test-ed25519.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-ed25519.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-ed448.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-ed448.crt -------------------------------------------------------------------------------- /tests/fixtures/keys/test-ed448.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-ed448.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-inter-der.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-inter-der.crt -------------------------------------------------------------------------------- /tests/fixtures/keys/test-inter.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-inter.crt -------------------------------------------------------------------------------- /tests/fixtures/keys/test-pkcs8-der.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-pkcs8-der.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-pkcs8-dsa-der.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-pkcs8-dsa-der.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-pkcs8-dsa.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-pkcs8-dsa.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-pkcs8-ec-der.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-pkcs8-ec-der.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-pkcs8-ec-named-der.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-pkcs8-ec-named-der.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-pkcs8-ec-named.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-pkcs8-ec-named.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-pkcs8-ec.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-pkcs8-ec.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-pkcs8.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-pkcs8.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-public-der.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-public-der.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-public-dsa-der.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-public-dsa-der.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-public-dsa.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-public-dsa.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-public-ec-der.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-public-ec-der.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-public-ec-named-der.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-public-ec-named-der.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-public-ec-named.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-public-ec-named.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-public-ec.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-public-ec.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-public-rsa-der.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-public-rsa-der.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-public-rsa.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-public-rsa.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-public-rsapss-der.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-public-rsapss-der.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-public-rsapss.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-public-rsapss.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-public.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-public.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-rc2.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-rc2.p12 -------------------------------------------------------------------------------- /tests/fixtures/keys/test-rsapss-der.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-rsapss-der.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-rsapss.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-rsapss.crt -------------------------------------------------------------------------------- /tests/fixtures/keys/test-rsapss.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-rsapss.key -------------------------------------------------------------------------------- /tests/fixtures/keys/test-third-der.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-third-der.crt -------------------------------------------------------------------------------- /tests/fixtures/keys/test-third.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-third.crt -------------------------------------------------------------------------------- /tests/fixtures/keys/test-validity.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test-validity.crt -------------------------------------------------------------------------------- /tests/fixtures/keys/test.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test.crt -------------------------------------------------------------------------------- /tests/fixtures/keys/test.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/keys/test.key -------------------------------------------------------------------------------- /tests/fixtures/lets_encrypt/isrgrootx1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/lets_encrypt/isrgrootx1.pem -------------------------------------------------------------------------------- /tests/fixtures/lets_encrypt/letsencryptauthorityx1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/lets_encrypt/letsencryptauthorityx1.pem -------------------------------------------------------------------------------- /tests/fixtures/lets_encrypt/letsencryptauthorityx2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/lets_encrypt/letsencryptauthorityx2.pem -------------------------------------------------------------------------------- /tests/fixtures/lets_encrypt/readme.md: -------------------------------------------------------------------------------- 1 | Certificates from https://letsencrypt.org/ 2 | -------------------------------------------------------------------------------- /tests/fixtures/meca2_compressed.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/meca2_compressed.der -------------------------------------------------------------------------------- /tests/fixtures/message.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/message.der -------------------------------------------------------------------------------- /tests/fixtures/message.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/message.pem -------------------------------------------------------------------------------- /tests/fixtures/message.txt: -------------------------------------------------------------------------------- 1 | This is the message to encapsulate in PKCS#7/CMS 2 | -------------------------------------------------------------------------------- /tests/fixtures/mozilla-generated-by-openssl.pkcs7.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/mozilla-generated-by-openssl.pkcs7.der -------------------------------------------------------------------------------- /tests/fixtures/ocsp-with-pkup.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/ocsp-with-pkup.pem -------------------------------------------------------------------------------- /tests/fixtures/ocsp_request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/ocsp_request -------------------------------------------------------------------------------- /tests/fixtures/ocsp_response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/ocsp_response -------------------------------------------------------------------------------- /tests/fixtures/pkcs7-signed-digested.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/pkcs7-signed-digested.der -------------------------------------------------------------------------------- /tests/fixtures/pkcs7-signed-digested.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/pkcs7-signed-digested.pem -------------------------------------------------------------------------------- /tests/fixtures/pkcs7-signed.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/pkcs7-signed.der -------------------------------------------------------------------------------- /tests/fixtures/pkcs7-signed.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/pkcs7-signed.pem -------------------------------------------------------------------------------- /tests/fixtures/rc2_algo.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/rc2_algo.der -------------------------------------------------------------------------------- /tests/fixtures/rc5_algo.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/rc5_algo.der -------------------------------------------------------------------------------- /tests/fixtures/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/readme.md -------------------------------------------------------------------------------- /tests/fixtures/rfc3739.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/rfc3739.crt -------------------------------------------------------------------------------- /tests/fixtures/scrypt_algo.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/scrypt_algo.der -------------------------------------------------------------------------------- /tests/fixtures/self-signed-repeated-subject-fields.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/self-signed-repeated-subject-fields.der -------------------------------------------------------------------------------- /tests/fixtures/sender_dummycorp.com.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/sender_dummycorp.com.crt -------------------------------------------------------------------------------- /tests/fixtures/smime-signature-generated-by-thunderbird.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/smime-signature-generated-by-thunderbird.p7s -------------------------------------------------------------------------------- /tests/fixtures/test-inter-der.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/test-inter-der.csr -------------------------------------------------------------------------------- /tests/fixtures/test-inter.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/test-inter.csr -------------------------------------------------------------------------------- /tests/fixtures/test-third-der.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/test-third-der.csr -------------------------------------------------------------------------------- /tests/fixtures/test-third.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/test-third.csr -------------------------------------------------------------------------------- /tests/fixtures/test-tripledes.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/test-tripledes.p12 -------------------------------------------------------------------------------- /tests/fixtures/test-windows-host.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/test-windows-host.csr -------------------------------------------------------------------------------- /tests/fixtures/tsp_request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/tsp_request -------------------------------------------------------------------------------- /tests/fixtures/tsp_response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/tsp_response -------------------------------------------------------------------------------- /tests/fixtures/universal/object_identifier.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/fixtures/universal/object_identifier.der -------------------------------------------------------------------------------- /tests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/readme.md -------------------------------------------------------------------------------- /tests/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/setup.py -------------------------------------------------------------------------------- /tests/test_algos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/test_algos.py -------------------------------------------------------------------------------- /tests/test_cms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/test_cms.py -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_crl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/test_crl.py -------------------------------------------------------------------------------- /tests/test_csr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/test_csr.py -------------------------------------------------------------------------------- /tests/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/test_init.py -------------------------------------------------------------------------------- /tests/test_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/test_keys.py -------------------------------------------------------------------------------- /tests/test_ocsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/test_ocsp.py -------------------------------------------------------------------------------- /tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/test_parser.py -------------------------------------------------------------------------------- /tests/test_pem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/test_pem.py -------------------------------------------------------------------------------- /tests/test_pkcs12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/test_pkcs12.py -------------------------------------------------------------------------------- /tests/test_tsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/test_tsp.py -------------------------------------------------------------------------------- /tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/test_util.py -------------------------------------------------------------------------------- /tests/test_x509.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/test_x509.py -------------------------------------------------------------------------------- /tests/unittest_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tests/unittest_data.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbond/asn1crypto/HEAD/tox.ini --------------------------------------------------------------------------------