├── .cargo └── audit.toml ├── .github ├── dependabot.yml └── workflows │ ├── base16ct.yml │ ├── base32ct.yml │ ├── base64ct.yml │ ├── cmpv2.yml │ ├── cms.yml │ ├── const-oid.yml │ ├── crmf.yml │ ├── der.yml │ ├── gss-api.yml │ ├── mcf.yml │ ├── pem-rfc7468.yml │ ├── phc.yml │ ├── pkcs1.yml │ ├── pkcs12.yml │ ├── pkcs5.yml │ ├── pkcs8.yml │ ├── sec1.yml │ ├── security-audit.yml │ ├── serdect.yml │ ├── spki.yml │ ├── tai64.yml │ ├── tai64_update_leap_seconds.yml │ ├── tls_codec.yml │ ├── workspace.yml │ ├── x509-cert.yml │ ├── x509-ocsp.yml │ └── x509-tsp.yml ├── .gitignore ├── .typos.toml ├── Cargo.lock ├── Cargo.toml ├── README.md ├── SECURITY.md ├── base16ct ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── benches │ └── mod.rs ├── src │ ├── display.rs │ ├── error.rs │ ├── lib.rs │ ├── lower.rs │ ├── mixed.rs │ └── upper.rs └── tests │ └── lib.rs ├── base32ct ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src │ ├── alphabet.rs │ ├── alphabet │ │ └── rfc4648.rs │ ├── encoding.rs │ ├── error.rs │ └── lib.rs └── tests │ ├── proptests.proptest-regressions │ ├── proptests.rs │ └── vectors.rs ├── base64ct ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── benches │ └── mod.rs ├── src │ ├── alphabet.rs │ ├── alphabet │ │ ├── bcrypt.rs │ │ ├── crypt.rs │ │ ├── shacrypt.rs │ │ ├── standard.rs │ │ └── url.rs │ ├── decoder.rs │ ├── encoder.rs │ ├── encoding.rs │ ├── errors.rs │ ├── lib.rs │ ├── line_ending.rs │ └── test_vectors.rs └── tests │ ├── bcrypt.rs │ ├── common │ └── mod.rs │ ├── crypt.rs │ ├── proptests.proptest-regressions │ ├── proptests.rs │ ├── shacrypt.rs │ ├── standard.rs │ └── url.rs ├── cmpv2 ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src │ ├── ann.rs │ ├── body.rs │ ├── certified_key_pair.rs │ ├── gp.rs │ ├── header.rs │ ├── lib.rs │ ├── message.rs │ ├── oob.rs │ ├── parameter.rs │ ├── poll.rs │ ├── pop.rs │ ├── response.rs │ ├── rev.rs │ └── status.rs └── tests │ ├── cert_req.rs │ ├── examples │ ├── cr_req_01.bin │ ├── cr_rsp_01.bin │ ├── ec384-ca-key.crt │ ├── ec384-ee-key.der │ ├── ec384-server-key.crt │ ├── ec384-server-key.der │ ├── ec384-server-key.pem │ ├── failed_kur_rsp_01.bin │ ├── genm_req_01.bin │ ├── genm_req_body_01.bin │ ├── genm_req_header_01.bin │ ├── genm_rsp_01.bin │ ├── ir_req_01.bin │ ├── ir_req_body_01.bin │ ├── ir_req_header_01.bin │ ├── ir_rsp_01.bin │ ├── ir_rsp_body_01.bin │ ├── ir_rsp_header_01.bin │ ├── kur_req_01.bin │ ├── kur_req_body_01.bin │ ├── kur_req_header_01.bin │ ├── kur_rsp_01.bin │ ├── p10cr_req_01.bin │ ├── p10cr_rsp_01.bin │ ├── rr_req_01.bin │ ├── rr_rsp_01.bin │ ├── rr_rsp_body_01.bin │ └── rr_rsp_header_01.bin │ ├── genm_req.rs │ ├── init_req.rs │ ├── key_update_req.rs │ ├── p10cr_req.rs │ └── rr_req.rs ├── cms ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src │ ├── attr.rs │ ├── authenticated_data.rs │ ├── authenveloped_data.rs │ ├── builder.rs │ ├── builder │ │ ├── kari.rs │ │ ├── utils.rs │ │ └── utils │ │ │ └── kw.rs │ ├── cert.rs │ ├── compressed_data.rs │ ├── content_info.rs │ ├── digested_data.rs │ ├── encrypted_data.rs │ ├── enveloped_data.rs │ ├── kemri.rs │ ├── lib.rs │ ├── revocation.rs │ ├── signed_data.rs │ ├── symmetric_key.rs │ └── timestamped_data.rs └── tests │ ├── builder.rs │ ├── builder │ └── kari.rs │ ├── compressed_data.rs │ ├── digested_data.rs │ ├── encrypted_data.rs │ ├── enveloped_data.rs │ ├── examples │ ├── 1.3.6.1.4.1.22554.5.6.1_ML-KEM-512-ipd_kemri_auth.der │ ├── 1.3.6.1.4.1.22554.5.6.1_ML-KEM-512-ipd_kemri_id-alg-hkdf-with-sha256.der │ ├── 1.3.6.1.4.1.22554.5.6.1_ML-KEM-512-ipd_kemri_ukm.der │ ├── GoodCACert.crt │ ├── GoodCACert.pem │ ├── ValidCertificatePathTest1EE.crt │ ├── ValidCertificatePathTest1EE.pem │ ├── apple_mdm_signature_der.bin │ ├── authroot.stl │ ├── authroot.stl.sd │ ├── cert.pem │ ├── certData.bin │ ├── cms_ber.bin │ ├── cms_der.bin │ ├── compressed_data.bin │ ├── data.txt │ ├── digested_data.bin │ ├── ec384-ee-key.der │ ├── encrypted_data.bin │ ├── enveloped_data_kari.bin │ ├── enveloped_data_kekri.bin │ ├── enveloped_data_ktri.bin │ ├── enveloped_data_multi.bin │ ├── enveloped_data_pwri.bin │ ├── example.pfx │ ├── examples_notes.txt │ ├── keyEncryptedData.bin │ ├── kms_ciphertext_for_recipient_1.ber │ ├── kms_ciphertext_for_recipient_2.ber │ ├── kms_ciphertext_for_recipient_3.ber │ ├── kms_ciphertext_for_recipient_4.ber │ ├── p256-priv.der │ ├── p256-pub.der │ ├── pkits.p7b │ ├── pkits_ee.p7b │ ├── rsa2048-priv.der │ ├── rsa_cert.der │ ├── rsa_sk.pkcs1.pem │ ├── scep_der.bin │ ├── sceptest_cert-selfsigned.pem │ ├── sceptest_csr.der │ ├── sceptest_key.pem │ ├── sd.cms │ ├── signer_info_explicit_attrs.bin │ └── signer_info_sequence_not_set.bin │ ├── kemri.rs │ ├── signed_data.rs │ └── tests_from_pkcs7_crate.rs ├── const-oid ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── oiddbgen │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── fips202.md │ ├── fips203.md │ ├── fips204.md │ ├── fips205.md │ ├── krb5-oids.asn │ ├── ldap-parameters-3.csv │ ├── microsoft.asn │ ├── rfc2985.txt │ ├── rfc3161.txt │ ├── rfc5280.txt │ ├── rfc5639.txt │ ├── rfc5753.txt │ ├── rfc5911.txt │ ├── rfc5912.txt │ ├── rfc6268.txt │ ├── rfc6960.txt │ ├── rfc6962.txt │ ├── rfc7107.txt │ ├── rfc7292.txt │ ├── rfc7299.txt │ ├── rfc7693.txt │ ├── rfc8410.txt │ ├── rfc8894.md │ ├── rfc9688.txt │ ├── src │ │ ├── asn1.rs │ │ ├── ldap.rs │ │ ├── lib.rs │ │ ├── main.rs │ │ ├── node.rs │ │ ├── root.rs │ │ └── spec.rs │ ├── stb │ │ ├── bake.asn │ │ ├── bash.asn │ │ ├── belt.asn │ │ ├── bign.asn │ │ ├── bpki.asn │ │ ├── brng.asn │ │ └── btok.asn │ └── tcg-tpm.md ├── src │ ├── arcs.rs │ ├── buffer.rs │ ├── checked.rs │ ├── db.rs │ ├── db │ │ └── generated.rs │ ├── encoder.rs │ ├── error.rs │ ├── lib.rs │ ├── parser.rs │ └── traits.rs └── tests │ ├── oid.rs │ ├── oid_ref.rs │ ├── proptests.proptest-regressions │ └── proptests.rs ├── crmf ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src │ ├── controls.rs │ ├── lib.rs │ ├── pop.rs │ ├── reg_info.rs │ └── request.rs └── tests │ ├── controls.rs │ ├── examples │ ├── certreqmsg.bin │ ├── certreqmsgs.bin │ ├── certrequest.bin │ └── certtemplate.bin │ └── request.rs ├── der ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src │ ├── arrayvec.rs │ ├── asn1.rs │ ├── asn1 │ │ ├── any.rs │ │ ├── application.rs │ │ ├── bit_string.rs │ │ ├── bit_string │ │ │ └── allowed_len_bit_string.rs │ │ ├── bmp_string.rs │ │ ├── boolean.rs │ │ ├── choice.rs │ │ ├── context_specific.rs │ │ ├── general_string.rs │ │ ├── generalized_time.rs │ │ ├── ia5_string.rs │ │ ├── integer.rs │ │ ├── integer │ │ │ ├── int.rs │ │ │ └── uint.rs │ │ ├── internal_macros.rs │ │ ├── null.rs │ │ ├── octet_string.rs │ │ ├── oid.rs │ │ ├── optional.rs │ │ ├── printable_string.rs │ │ ├── private.rs │ │ ├── real.rs │ │ ├── sequence.rs │ │ ├── sequence_of.rs │ │ ├── set_of.rs │ │ ├── teletex_string.rs │ │ ├── utc_time.rs │ │ ├── utf8_string.rs │ │ └── videotex_string.rs │ ├── bytes.rs │ ├── datetime.rs │ ├── decode.rs │ ├── document.rs │ ├── encode.rs │ ├── encode_ref.rs │ ├── encoding_rules.rs │ ├── error.rs │ ├── header.rs │ ├── length.rs │ ├── length │ │ └── indefinite.rs │ ├── lib.rs │ ├── ord.rs │ ├── reader.rs │ ├── reader │ │ ├── pem.rs │ │ ├── position.rs │ │ └── slice.rs │ ├── referenced.rs │ ├── string.rs │ ├── tag.rs │ ├── tag │ │ ├── class.rs │ │ ├── mode.rs │ │ └── number.rs │ ├── writer.rs │ └── writer │ │ ├── pem.rs │ │ └── slice.rs └── tests │ ├── datetime.proptest-regressions │ ├── datetime.rs │ ├── derive.rs │ ├── derive_no_alloc.rs │ ├── examples │ ├── spki.der │ └── spki.pem │ ├── pem.rs │ └── set_of.rs ├── der_derive ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md └── src │ ├── asn1_type.rs │ ├── attributes.rs │ ├── bitstring.rs │ ├── bitstring │ └── field.rs │ ├── choice.rs │ ├── choice │ └── variant.rs │ ├── enumerated.rs │ ├── lib.rs │ ├── sequence.rs │ ├── sequence │ └── field.rs │ ├── tag.rs │ └── value_ord.rs ├── gss-api ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md └── src │ ├── lib.rs │ └── negotiation.rs ├── mcf ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src │ ├── base64.rs │ ├── error.rs │ ├── fields.rs │ └── lib.rs └── tests │ └── mcf.rs ├── pem-rfc7468 ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src │ ├── decoder.rs │ ├── encoder.rs │ ├── error.rs │ ├── grammar.rs │ └── lib.rs └── tests │ ├── decode.rs │ ├── encode.rs │ └── examples │ ├── chosen_header.pem │ ├── ed25519_id.pem │ ├── pkcs1.der │ ├── pkcs1.pem │ ├── pkcs1_with_preceding_junk.pem │ ├── pkcs8-enc.der │ ├── pkcs8-enc.pem │ ├── pkcs8.der │ ├── pkcs8.pem │ ├── ssh-id_ed25519.pem │ └── ssh_rsa_pem_password.pem ├── phc ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src │ ├── error.rs │ ├── ident.rs │ ├── lib.rs │ ├── output.rs │ ├── params.rs │ ├── salt.rs │ ├── string_buf.rs │ └── value.rs └── tests │ ├── encoding.rs │ ├── password_hash.rs │ └── test_vectors.rs ├── pkcs1 ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src │ ├── error.rs │ ├── lib.rs │ ├── params.rs │ ├── private_key.rs │ ├── private_key │ │ └── other_prime_info.rs │ ├── public_key.rs │ ├── traits.rs │ └── version.rs └── tests │ ├── examples │ ├── rsa2048-priv-3prime.der │ ├── rsa2048-priv-3prime.pem │ ├── rsa2048-priv.der │ ├── rsa2048-priv.pem │ ├── rsa2048-pub.der │ ├── rsa2048-pub.pem │ ├── rsa4096-priv.der │ ├── rsa4096-priv.pem │ ├── rsa4096-pub.der │ └── rsa4096-pub.pem │ ├── params.rs │ ├── private_key.rs │ ├── public_key.rs │ └── traits.rs ├── pkcs12 ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src │ ├── authenticated_safe.rs │ ├── bag_type.rs │ ├── cert_type.rs │ ├── crl_type.rs │ ├── digest_info.rs │ ├── kdf.rs │ ├── lib.rs │ ├── mac_data.rs │ ├── pbe_params.rs │ ├── pfx.rs │ └── safe_bag.rs └── tests │ ├── cert_tests.rs │ ├── examples │ ├── GoodCACert.crt │ ├── GoodCACert.der │ ├── ValidCertificatePathTest1EE.crt │ ├── ValidCertificatePathTest1EE.key │ ├── ValidCertificatePathTest1EE.p12 │ ├── ValidCertificatePathTest1EE.pem │ ├── ValidCertificatePathTest1EE_firefox.p12 │ ├── ValidCertificatePathTest1EE_macos.p12 │ ├── ValidCertificatePathTest1EE_windows_aes.p12.pfx │ ├── ValidCertificatePathTest1EE_windows_tdes.p12.pfx │ ├── cert.der │ ├── cert.pem │ ├── example.pfx │ ├── example10.pfx │ ├── example11.pfx │ ├── example12.pfx │ ├── example13.pfx │ ├── example14.pfx │ ├── example15.pfx │ ├── example16.pfx │ ├── example17.pfx │ ├── example2.pfx │ ├── example3.pfx │ ├── example4.pfx │ ├── example5.pfx │ ├── example6.pfx │ ├── example7.pfx │ ├── example8.pfx │ ├── example9.pfx │ ├── gen.sh │ ├── key.der │ └── key.pem │ └── kdf.rs ├── pkcs5 ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src │ ├── error.rs │ ├── lib.rs │ ├── pbes1.rs │ ├── pbes2.rs │ └── pbes2 │ │ ├── encryption.rs │ │ ├── kdf.rs │ │ └── kdf │ │ └── salt.rs └── tests │ ├── encryption.rs │ ├── examples │ ├── pbes2_aes-128-cbc_hmacWithSHA1_algid.der │ ├── pbes2_aes-128-cbc_hmacWithSHA1_ciphertext.bin │ ├── pbes2_aes-128-cbc_hmacWithSHA224_algid.der │ ├── pbes2_aes-128-cbc_hmacWithSHA224_ciphertext.bin │ ├── pbes2_aes-128-cbc_hmacWithSHA256_algid.der │ ├── pbes2_aes-128-cbc_hmacWithSHA256_ciphertext.bin │ ├── pbes2_aes-128-cbc_hmacWithSHA384_algid.der │ ├── pbes2_aes-128-cbc_hmacWithSHA384_ciphertext.bin │ ├── pbes2_aes-128-cbc_hmacWithSHA512_algid.der │ ├── pbes2_aes-128-cbc_hmacWithSHA512_ciphertext.bin │ ├── pbes2_aes-192-cbc_hmacWithSHA1_algid.der │ ├── pbes2_aes-192-cbc_hmacWithSHA1_ciphertext.bin │ ├── pbes2_aes-192-cbc_hmacWithSHA224_algid.der │ ├── pbes2_aes-192-cbc_hmacWithSHA224_ciphertext.bin │ ├── pbes2_aes-192-cbc_hmacWithSHA256_algid.der │ ├── pbes2_aes-192-cbc_hmacWithSHA256_ciphertext.bin │ ├── pbes2_aes-192-cbc_hmacWithSHA384_algid.der │ ├── pbes2_aes-192-cbc_hmacWithSHA384_ciphertext.bin │ ├── pbes2_aes-192-cbc_hmacWithSHA512_algid.der │ ├── pbes2_aes-192-cbc_hmacWithSHA512_ciphertext.bin │ ├── pbes2_aes-256-cbc_hmacWithSHA1_algid.der │ ├── pbes2_aes-256-cbc_hmacWithSHA1_ciphertext.bin │ ├── pbes2_aes-256-cbc_hmacWithSHA224_algid.der │ ├── pbes2_aes-256-cbc_hmacWithSHA224_ciphertext.bin │ ├── pbes2_aes-256-cbc_hmacWithSHA256_algid-no-param.der │ ├── pbes2_aes-256-cbc_hmacWithSHA256_algid.der │ ├── pbes2_aes-256-cbc_hmacWithSHA256_ciphertext.bin │ ├── pbes2_aes-256-cbc_hmacWithSHA384_algid.der │ ├── pbes2_aes-256-cbc_hmacWithSHA384_ciphertext.bin │ ├── pbes2_aes-256-cbc_hmacWithSHA512_algid.der │ ├── pbes2_aes-256-cbc_hmacWithSHA512_ciphertext.bin │ ├── re-gen.sh │ ├── rsa_sk.pkcs1.pem │ ├── rsa_sk.pkcs8.der │ ├── rsa_sk_aes-128-cbc_hmacWithSHA1.pkcs8.der │ ├── rsa_sk_aes-128-cbc_hmacWithSHA224.pkcs8.der │ ├── rsa_sk_aes-128-cbc_hmacWithSHA256.pkcs8.der │ ├── rsa_sk_aes-128-cbc_hmacWithSHA384.pkcs8.der │ ├── rsa_sk_aes-128-cbc_hmacWithSHA512.pkcs8.der │ ├── rsa_sk_aes-192-cbc_hmacWithSHA1.pkcs8.der │ ├── rsa_sk_aes-192-cbc_hmacWithSHA224.pkcs8.der │ ├── rsa_sk_aes-192-cbc_hmacWithSHA256.pkcs8.der │ ├── rsa_sk_aes-192-cbc_hmacWithSHA384.pkcs8.der │ ├── rsa_sk_aes-192-cbc_hmacWithSHA512.pkcs8.der │ ├── rsa_sk_aes-256-cbc_hmacWithSHA1.pkcs8.der │ ├── rsa_sk_aes-256-cbc_hmacWithSHA224.pkcs8.der │ ├── rsa_sk_aes-256-cbc_hmacWithSHA256.pkcs8.der │ ├── rsa_sk_aes-256-cbc_hmacWithSHA384.pkcs8.der │ └── rsa_sk_aes-256-cbc_hmacWithSHA512.pkcs8.der │ ├── pbes2.rs │ └── pbes2_pbkdf2_decrypt.rs ├── pkcs8 ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src │ ├── encrypted_private_key_info.rs │ ├── error.rs │ ├── lib.rs │ ├── private_key_info.rs │ ├── traits.rs │ └── version.rs └── tests │ ├── encrypted_private_key.rs │ ├── examples │ ├── bign256-priv.der │ ├── bign256-priv.pem │ ├── ed25519-encpriv-aes128-gcm-scrypt.der │ ├── ed25519-encpriv-aes128-pbkdf2-sha1.der │ ├── ed25519-encpriv-aes256-gcm-scrypt.der │ ├── ed25519-encpriv-aes256-pbkdf2-sha256.der │ ├── ed25519-encpriv-aes256-pbkdf2-sha256.pem │ ├── ed25519-encpriv-aes256-scrypt.der │ ├── ed25519-encpriv-aes256-scrypt.pem │ ├── ed25519-encpriv-des-pbkdf2-sha256.der │ ├── ed25519-encpriv-des3-pbkdf2-sha256.der │ ├── ed25519-priv-pkcs8v1.der │ ├── ed25519-priv-pkcs8v1.pem │ ├── ed25519-priv-pkcs8v2.der │ ├── ed25519-priv-pkcs8v2.pem │ ├── ed25519-pub.der │ ├── ed25519-pub.pem │ ├── p256-priv.der │ ├── p256-priv.pem │ ├── p256-pub.der │ ├── p256-pub.pem │ ├── rsa2048-priv.der │ ├── rsa2048-priv.pem │ ├── rsa2048-pub.der │ ├── rsa2048-pub.pem │ ├── x25519-priv.der │ └── x25519-priv.pem │ ├── private_key.rs │ └── traits.rs ├── sec1 ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src │ ├── error.rs │ ├── lib.rs │ ├── parameters.rs │ ├── point.rs │ ├── private_key.rs │ └── traits.rs └── tests │ ├── examples │ ├── p256-priv.der │ └── p256-priv.pem │ ├── private_key.rs │ └── traits.rs ├── serdect ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src │ ├── array.rs │ ├── common.rs │ ├── lib.rs │ └── slice.rs └── tests │ ├── bincode.rs │ ├── cbor.rs │ ├── messagepack.rs │ ├── serde-json-core.rs │ ├── serde_json.rs │ └── toml.rs ├── spki ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── benches │ └── mod.rs ├── src │ ├── algorithm.rs │ ├── digest.rs │ ├── error.rs │ ├── lib.rs │ ├── spki.rs │ └── traits.rs └── tests │ ├── examples │ ├── ed25519-pub.der │ ├── ed25519-pub.pem │ ├── p256-pub.der │ ├── p256-pub.pem │ ├── rsa2048-pub.der │ └── rsa2048-pub.pem │ ├── spki.rs │ └── traits.rs ├── tai64 ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md └── src │ └── lib.rs ├── tls_codec ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── benches │ ├── quic_vec.rs │ └── tls_vec.rs ├── derive │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── src │ │ └── lib.rs │ └── tests │ │ ├── attributes.rs │ │ ├── attributes │ │ ├── test_that_duplicate_skip_attributes_dont_compile.rs │ │ ├── test_that_duplicate_skip_attributes_dont_compile.stderr │ │ ├── that_non_default_field_does_not_compile.rs │ │ ├── that_non_default_field_does_not_compile.stderr │ │ ├── that_skip_attribute_does_not_compile_on_enums.rs │ │ └── that_skip_attribute_does_not_compile_on_enums.stderr │ │ ├── decode.rs │ │ ├── decode_bytes.rs │ │ ├── encode.rs │ │ └── encode_bytes.rs ├── fuzz │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ └── fuzz_targets │ │ └── inverse.rs ├── src │ ├── arrays.rs │ ├── lib.rs │ ├── primitives.rs │ ├── quic_vec.rs │ └── tls_vec.rs └── tests │ ├── decode.rs │ ├── decode_bytes.rs │ ├── encode.rs │ ├── encode_bytes.rs │ └── serde_impls.rs ├── x509-cert ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── fuzz │ ├── .gitignore │ ├── Cargo.toml │ ├── inputs │ │ └── rsa2048-csr.der │ └── src │ │ └── bin │ │ ├── certreq.rs │ │ └── certreqinfo.rs ├── src │ ├── anchor.rs │ ├── attr.rs │ ├── builder.rs │ ├── builder │ │ ├── profile.rs │ │ └── profile │ │ │ ├── cabf.rs │ │ │ ├── cabf │ │ │ └── tls.rs │ │ │ └── devid.rs │ ├── certificate.rs │ ├── crl.rs │ ├── ext.rs │ ├── ext │ │ ├── pkix.rs │ │ └── pkix │ │ │ ├── access.rs │ │ │ ├── authkeyid.rs │ │ │ ├── certpolicy.rs │ │ │ ├── constraints.rs │ │ │ ├── constraints │ │ │ ├── basic.rs │ │ │ ├── name.rs │ │ │ └── policy.rs │ │ │ ├── crl.rs │ │ │ ├── crl │ │ │ └── dp.rs │ │ │ ├── keyusage.rs │ │ │ ├── name.rs │ │ │ ├── name │ │ │ ├── dirstr.rs │ │ │ ├── dp.rs │ │ │ ├── ediparty.rs │ │ │ ├── general.rs │ │ │ ├── hardware.rs │ │ │ └── other.rs │ │ │ ├── policymap.rs │ │ │ └── sct.rs │ ├── lib.rs │ ├── macros.rs │ ├── name.rs │ ├── request.rs │ ├── request │ │ └── builder.rs │ ├── serial_number.rs │ └── time.rs ├── test-support │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── openssl.rs │ │ └── zlint.rs └── tests │ ├── builder.rs │ ├── builder_crl.rs │ ├── certificate.rs │ ├── certreq.rs │ ├── crl.rs │ ├── examples │ ├── 026EDA6FA1EDFA8C253936C75B5EEBD954BFF452.fake.der │ ├── 026EDA6FA1EDFA8C253936C75B5EEBD954BFF452.fake.pem │ ├── 085B1E2F40254F9C7A2387BE9FF4EC116C326E10.fake.der │ ├── 0954e2343dd5efe0a7f0967d69caf33e5f893720.der │ ├── 0fcc78fbbca9f32b08b19b032b84f2c86a128f35.der │ ├── 15b05c4865410c6b3ff76a4e8f3d87276756bd0c.der │ ├── 16ee54e48c76eaa1052e09010d8faefee95e5ebb.der │ ├── 2049a5b28f104b2c6e1a08546f9cfc0353d6fd30.der │ ├── 21723e7a0fb61a0bd4a29879b82a02b2fb4ad096.der │ ├── 284A0A3A9B56DD752DAA2E09E2FADEDB858D9338.fake.der │ ├── 28879DABB0FD11618FB74E47BE049D2933866D53.fake.der │ ├── 288C8BCFEE6B89D110DAE2C9873897BF7FF53382.fake.der │ ├── 28903a635b5280fae6774c0b6da7d6baa64af2e8.der │ ├── 33D8388EDA1E92475EF19075D2EF4093D1CB6F7F.fake.der │ ├── 342cd9d3062da48c346965297f081ebc2ef68fdc.der │ ├── 554D5FF11DA613A155584D8D4AA07F67724D8077.fake.der │ ├── GoodCACRL.crl │ ├── GoodCACert.crt │ ├── amazon.der │ ├── amazon.pem │ ├── crates.io-chain.pem │ ├── eca.der │ ├── eca_policies.ta │ ├── entrust.der │ ├── entrust_dnConstraint.ta │ ├── exostar.der │ ├── exostar_policyFlags.ta │ ├── lenovo_pk.pem │ ├── p256-priv.der │ ├── p256-pub.der │ ├── qualcomm.pem │ ├── raytheon.der │ ├── raytheon_pathLenConstraint.ta │ ├── rsa2048-crt.der │ ├── rsa2048-crt.pem │ ├── rsa2048-csr.der │ ├── rsa2048-csr.pem │ ├── rsa2048-priv.der │ ├── rsa2048-prv.der │ ├── rsa2048-prv.pem │ ├── rsa2048-pub.der │ ├── tscpbcasha256.crl │ └── windows_bmpstring.pem │ ├── general_name.rs │ ├── name.rs │ ├── pkix_extensions.rs │ ├── trust_anchor_format.rs │ └── validity.rs ├── x509-ocsp ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── src │ ├── basic.rs │ ├── builder.rs │ ├── builder │ │ ├── request.rs │ │ └── response.rs │ ├── cert_id.rs │ ├── cert_status.rs │ ├── ext.rs │ ├── lib.rs │ ├── request.rs │ ├── responder_id.rs │ ├── response.rs │ └── time.rs └── tests │ ├── builder.rs │ ├── examples │ ├── DODEMAILCA_63-resp.der │ ├── ocsp-by-key-res.der │ ├── ocsp-dtm-no-chain-res.der │ ├── ocsp-internal-error.der │ ├── ocsp-malformed.der │ ├── ocsp-multiple-exts-clean-req.der │ ├── ocsp-multiple-exts-res.der │ ├── ocsp-multiple-requests-nonce-req.der │ ├── ocsp-multiple-requests-req.der │ ├── ocsp-multiple-responses-res.der │ ├── ocsp-sig-required.der │ ├── ocsp-signed-req.der │ ├── ocsp-try-later.der │ ├── ocsp-unauthorized.der │ ├── rsa-2048-sha256-ca-crl.der │ ├── rsa-2048-sha256-ca-key.der │ ├── rsa-2048-sha256-ca.der │ ├── rsa-2048-sha256-crt-key.der │ ├── rsa-2048-sha256-crt.der │ ├── rsa-2048-sha256-ocsp-crt-key.der │ ├── rsa-2048-sha256-ocsp-crt.der │ ├── rsa-2048-sha256-revoked-ocsp-res.der │ ├── sha1-certid-ocsp-req.der │ ├── sha1-certid-ocsp-res.der │ ├── sha224-certid-ocsp-req.der │ ├── sha256-certid-ocsp-req.der │ ├── sha256-certid-ocsp-res.der │ ├── sha384-certid-ocsp-req.der │ ├── sha512-certid-ocsp-req.der │ └── sha512-certid-ocsp-res.der │ ├── ext.rs │ ├── ocsp.rs │ ├── requests.rs │ └── responses.rs └── x509-tsp ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md └── src ├── generalized_time_nanos.rs └── lib.rs /.cargo/audit.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.cargo/audit.toml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/base16ct.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/base16ct.yml -------------------------------------------------------------------------------- /.github/workflows/base32ct.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/base32ct.yml -------------------------------------------------------------------------------- /.github/workflows/base64ct.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/base64ct.yml -------------------------------------------------------------------------------- /.github/workflows/cmpv2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/cmpv2.yml -------------------------------------------------------------------------------- /.github/workflows/cms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/cms.yml -------------------------------------------------------------------------------- /.github/workflows/const-oid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/const-oid.yml -------------------------------------------------------------------------------- /.github/workflows/crmf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/crmf.yml -------------------------------------------------------------------------------- /.github/workflows/der.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/der.yml -------------------------------------------------------------------------------- /.github/workflows/gss-api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/gss-api.yml -------------------------------------------------------------------------------- /.github/workflows/mcf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/mcf.yml -------------------------------------------------------------------------------- /.github/workflows/pem-rfc7468.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/pem-rfc7468.yml -------------------------------------------------------------------------------- /.github/workflows/phc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/phc.yml -------------------------------------------------------------------------------- /.github/workflows/pkcs1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/pkcs1.yml -------------------------------------------------------------------------------- /.github/workflows/pkcs12.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/pkcs12.yml -------------------------------------------------------------------------------- /.github/workflows/pkcs5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/pkcs5.yml -------------------------------------------------------------------------------- /.github/workflows/pkcs8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/pkcs8.yml -------------------------------------------------------------------------------- /.github/workflows/sec1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/sec1.yml -------------------------------------------------------------------------------- /.github/workflows/security-audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/security-audit.yml -------------------------------------------------------------------------------- /.github/workflows/serdect.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/serdect.yml -------------------------------------------------------------------------------- /.github/workflows/spki.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/spki.yml -------------------------------------------------------------------------------- /.github/workflows/tai64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/tai64.yml -------------------------------------------------------------------------------- /.github/workflows/tai64_update_leap_seconds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/tai64_update_leap_seconds.yml -------------------------------------------------------------------------------- /.github/workflows/tls_codec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/tls_codec.yml -------------------------------------------------------------------------------- /.github/workflows/workspace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/workspace.yml -------------------------------------------------------------------------------- /.github/workflows/x509-cert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/x509-cert.yml -------------------------------------------------------------------------------- /.github/workflows/x509-ocsp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/x509-ocsp.yml -------------------------------------------------------------------------------- /.github/workflows/x509-tsp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.github/workflows/x509-tsp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.gitignore -------------------------------------------------------------------------------- /.typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/.typos.toml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/SECURITY.md -------------------------------------------------------------------------------- /base16ct/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base16ct/CHANGELOG.md -------------------------------------------------------------------------------- /base16ct/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base16ct/Cargo.toml -------------------------------------------------------------------------------- /base16ct/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base16ct/LICENSE-APACHE -------------------------------------------------------------------------------- /base16ct/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base16ct/LICENSE-MIT -------------------------------------------------------------------------------- /base16ct/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base16ct/README.md -------------------------------------------------------------------------------- /base16ct/benches/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base16ct/benches/mod.rs -------------------------------------------------------------------------------- /base16ct/src/display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base16ct/src/display.rs -------------------------------------------------------------------------------- /base16ct/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base16ct/src/error.rs -------------------------------------------------------------------------------- /base16ct/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base16ct/src/lib.rs -------------------------------------------------------------------------------- /base16ct/src/lower.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base16ct/src/lower.rs -------------------------------------------------------------------------------- /base16ct/src/mixed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base16ct/src/mixed.rs -------------------------------------------------------------------------------- /base16ct/src/upper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base16ct/src/upper.rs -------------------------------------------------------------------------------- /base16ct/tests/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base16ct/tests/lib.rs -------------------------------------------------------------------------------- /base32ct/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base32ct/CHANGELOG.md -------------------------------------------------------------------------------- /base32ct/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base32ct/Cargo.toml -------------------------------------------------------------------------------- /base32ct/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base32ct/LICENSE-APACHE -------------------------------------------------------------------------------- /base32ct/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base32ct/LICENSE-MIT -------------------------------------------------------------------------------- /base32ct/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base32ct/README.md -------------------------------------------------------------------------------- /base32ct/src/alphabet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base32ct/src/alphabet.rs -------------------------------------------------------------------------------- /base32ct/src/alphabet/rfc4648.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base32ct/src/alphabet/rfc4648.rs -------------------------------------------------------------------------------- /base32ct/src/encoding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base32ct/src/encoding.rs -------------------------------------------------------------------------------- /base32ct/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base32ct/src/error.rs -------------------------------------------------------------------------------- /base32ct/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base32ct/src/lib.rs -------------------------------------------------------------------------------- /base32ct/tests/proptests.proptest-regressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base32ct/tests/proptests.proptest-regressions -------------------------------------------------------------------------------- /base32ct/tests/proptests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base32ct/tests/proptests.rs -------------------------------------------------------------------------------- /base32ct/tests/vectors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base32ct/tests/vectors.rs -------------------------------------------------------------------------------- /base64ct/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/CHANGELOG.md -------------------------------------------------------------------------------- /base64ct/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/Cargo.toml -------------------------------------------------------------------------------- /base64ct/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/LICENSE-APACHE -------------------------------------------------------------------------------- /base64ct/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/LICENSE-MIT -------------------------------------------------------------------------------- /base64ct/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/README.md -------------------------------------------------------------------------------- /base64ct/benches/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/benches/mod.rs -------------------------------------------------------------------------------- /base64ct/src/alphabet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/src/alphabet.rs -------------------------------------------------------------------------------- /base64ct/src/alphabet/bcrypt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/src/alphabet/bcrypt.rs -------------------------------------------------------------------------------- /base64ct/src/alphabet/crypt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/src/alphabet/crypt.rs -------------------------------------------------------------------------------- /base64ct/src/alphabet/shacrypt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/src/alphabet/shacrypt.rs -------------------------------------------------------------------------------- /base64ct/src/alphabet/standard.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/src/alphabet/standard.rs -------------------------------------------------------------------------------- /base64ct/src/alphabet/url.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/src/alphabet/url.rs -------------------------------------------------------------------------------- /base64ct/src/decoder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/src/decoder.rs -------------------------------------------------------------------------------- /base64ct/src/encoder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/src/encoder.rs -------------------------------------------------------------------------------- /base64ct/src/encoding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/src/encoding.rs -------------------------------------------------------------------------------- /base64ct/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/src/errors.rs -------------------------------------------------------------------------------- /base64ct/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/src/lib.rs -------------------------------------------------------------------------------- /base64ct/src/line_ending.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/src/line_ending.rs -------------------------------------------------------------------------------- /base64ct/src/test_vectors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/src/test_vectors.rs -------------------------------------------------------------------------------- /base64ct/tests/bcrypt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/tests/bcrypt.rs -------------------------------------------------------------------------------- /base64ct/tests/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/tests/common/mod.rs -------------------------------------------------------------------------------- /base64ct/tests/crypt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/tests/crypt.rs -------------------------------------------------------------------------------- /base64ct/tests/proptests.proptest-regressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/tests/proptests.proptest-regressions -------------------------------------------------------------------------------- /base64ct/tests/proptests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/tests/proptests.rs -------------------------------------------------------------------------------- /base64ct/tests/shacrypt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/tests/shacrypt.rs -------------------------------------------------------------------------------- /base64ct/tests/standard.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/tests/standard.rs -------------------------------------------------------------------------------- /base64ct/tests/url.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/base64ct/tests/url.rs -------------------------------------------------------------------------------- /cmpv2/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/CHANGELOG.md -------------------------------------------------------------------------------- /cmpv2/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/Cargo.toml -------------------------------------------------------------------------------- /cmpv2/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/LICENSE-APACHE -------------------------------------------------------------------------------- /cmpv2/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/LICENSE-MIT -------------------------------------------------------------------------------- /cmpv2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/README.md -------------------------------------------------------------------------------- /cmpv2/src/ann.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/src/ann.rs -------------------------------------------------------------------------------- /cmpv2/src/body.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/src/body.rs -------------------------------------------------------------------------------- /cmpv2/src/certified_key_pair.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/src/certified_key_pair.rs -------------------------------------------------------------------------------- /cmpv2/src/gp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/src/gp.rs -------------------------------------------------------------------------------- /cmpv2/src/header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/src/header.rs -------------------------------------------------------------------------------- /cmpv2/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/src/lib.rs -------------------------------------------------------------------------------- /cmpv2/src/message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/src/message.rs -------------------------------------------------------------------------------- /cmpv2/src/oob.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/src/oob.rs -------------------------------------------------------------------------------- /cmpv2/src/parameter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/src/parameter.rs -------------------------------------------------------------------------------- /cmpv2/src/poll.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/src/poll.rs -------------------------------------------------------------------------------- /cmpv2/src/pop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/src/pop.rs -------------------------------------------------------------------------------- /cmpv2/src/response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/src/response.rs -------------------------------------------------------------------------------- /cmpv2/src/rev.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/src/rev.rs -------------------------------------------------------------------------------- /cmpv2/src/status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/src/status.rs -------------------------------------------------------------------------------- /cmpv2/tests/cert_req.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/cert_req.rs -------------------------------------------------------------------------------- /cmpv2/tests/examples/cr_req_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/cr_req_01.bin -------------------------------------------------------------------------------- /cmpv2/tests/examples/cr_rsp_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/cr_rsp_01.bin -------------------------------------------------------------------------------- /cmpv2/tests/examples/ec384-ca-key.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/ec384-ca-key.crt -------------------------------------------------------------------------------- /cmpv2/tests/examples/ec384-ee-key.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/ec384-ee-key.der -------------------------------------------------------------------------------- /cmpv2/tests/examples/ec384-server-key.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/ec384-server-key.crt -------------------------------------------------------------------------------- /cmpv2/tests/examples/ec384-server-key.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/ec384-server-key.der -------------------------------------------------------------------------------- /cmpv2/tests/examples/ec384-server-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/ec384-server-key.pem -------------------------------------------------------------------------------- /cmpv2/tests/examples/failed_kur_rsp_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/failed_kur_rsp_01.bin -------------------------------------------------------------------------------- /cmpv2/tests/examples/genm_req_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/genm_req_01.bin -------------------------------------------------------------------------------- /cmpv2/tests/examples/genm_req_body_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/genm_req_body_01.bin -------------------------------------------------------------------------------- /cmpv2/tests/examples/genm_req_header_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/genm_req_header_01.bin -------------------------------------------------------------------------------- /cmpv2/tests/examples/genm_rsp_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/genm_rsp_01.bin -------------------------------------------------------------------------------- /cmpv2/tests/examples/ir_req_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/ir_req_01.bin -------------------------------------------------------------------------------- /cmpv2/tests/examples/ir_req_body_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/ir_req_body_01.bin -------------------------------------------------------------------------------- /cmpv2/tests/examples/ir_req_header_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/ir_req_header_01.bin -------------------------------------------------------------------------------- /cmpv2/tests/examples/ir_rsp_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/ir_rsp_01.bin -------------------------------------------------------------------------------- /cmpv2/tests/examples/ir_rsp_body_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/ir_rsp_body_01.bin -------------------------------------------------------------------------------- /cmpv2/tests/examples/ir_rsp_header_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/ir_rsp_header_01.bin -------------------------------------------------------------------------------- /cmpv2/tests/examples/kur_req_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/kur_req_01.bin -------------------------------------------------------------------------------- /cmpv2/tests/examples/kur_req_body_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/kur_req_body_01.bin -------------------------------------------------------------------------------- /cmpv2/tests/examples/kur_req_header_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/kur_req_header_01.bin -------------------------------------------------------------------------------- /cmpv2/tests/examples/kur_rsp_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/kur_rsp_01.bin -------------------------------------------------------------------------------- /cmpv2/tests/examples/p10cr_req_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/p10cr_req_01.bin -------------------------------------------------------------------------------- /cmpv2/tests/examples/p10cr_rsp_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/p10cr_rsp_01.bin -------------------------------------------------------------------------------- /cmpv2/tests/examples/rr_req_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/rr_req_01.bin -------------------------------------------------------------------------------- /cmpv2/tests/examples/rr_rsp_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/rr_rsp_01.bin -------------------------------------------------------------------------------- /cmpv2/tests/examples/rr_rsp_body_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/rr_rsp_body_01.bin -------------------------------------------------------------------------------- /cmpv2/tests/examples/rr_rsp_header_01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/examples/rr_rsp_header_01.bin -------------------------------------------------------------------------------- /cmpv2/tests/genm_req.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/genm_req.rs -------------------------------------------------------------------------------- /cmpv2/tests/init_req.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/init_req.rs -------------------------------------------------------------------------------- /cmpv2/tests/key_update_req.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/key_update_req.rs -------------------------------------------------------------------------------- /cmpv2/tests/p10cr_req.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/p10cr_req.rs -------------------------------------------------------------------------------- /cmpv2/tests/rr_req.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cmpv2/tests/rr_req.rs -------------------------------------------------------------------------------- /cms/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/CHANGELOG.md -------------------------------------------------------------------------------- /cms/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/Cargo.toml -------------------------------------------------------------------------------- /cms/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/LICENSE-APACHE -------------------------------------------------------------------------------- /cms/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/LICENSE-MIT -------------------------------------------------------------------------------- /cms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/README.md -------------------------------------------------------------------------------- /cms/src/attr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/src/attr.rs -------------------------------------------------------------------------------- /cms/src/authenticated_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/src/authenticated_data.rs -------------------------------------------------------------------------------- /cms/src/authenveloped_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/src/authenveloped_data.rs -------------------------------------------------------------------------------- /cms/src/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/src/builder.rs -------------------------------------------------------------------------------- /cms/src/builder/kari.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/src/builder/kari.rs -------------------------------------------------------------------------------- /cms/src/builder/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/src/builder/utils.rs -------------------------------------------------------------------------------- /cms/src/builder/utils/kw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/src/builder/utils/kw.rs -------------------------------------------------------------------------------- /cms/src/cert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/src/cert.rs -------------------------------------------------------------------------------- /cms/src/compressed_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/src/compressed_data.rs -------------------------------------------------------------------------------- /cms/src/content_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/src/content_info.rs -------------------------------------------------------------------------------- /cms/src/digested_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/src/digested_data.rs -------------------------------------------------------------------------------- /cms/src/encrypted_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/src/encrypted_data.rs -------------------------------------------------------------------------------- /cms/src/enveloped_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/src/enveloped_data.rs -------------------------------------------------------------------------------- /cms/src/kemri.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/src/kemri.rs -------------------------------------------------------------------------------- /cms/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/src/lib.rs -------------------------------------------------------------------------------- /cms/src/revocation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/src/revocation.rs -------------------------------------------------------------------------------- /cms/src/signed_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/src/signed_data.rs -------------------------------------------------------------------------------- /cms/src/symmetric_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/src/symmetric_key.rs -------------------------------------------------------------------------------- /cms/src/timestamped_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/src/timestamped_data.rs -------------------------------------------------------------------------------- /cms/tests/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/builder.rs -------------------------------------------------------------------------------- /cms/tests/builder/kari.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/builder/kari.rs -------------------------------------------------------------------------------- /cms/tests/compressed_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/compressed_data.rs -------------------------------------------------------------------------------- /cms/tests/digested_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/digested_data.rs -------------------------------------------------------------------------------- /cms/tests/encrypted_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/encrypted_data.rs -------------------------------------------------------------------------------- /cms/tests/enveloped_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/enveloped_data.rs -------------------------------------------------------------------------------- /cms/tests/examples/1.3.6.1.4.1.22554.5.6.1_ML-KEM-512-ipd_kemri_auth.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/1.3.6.1.4.1.22554.5.6.1_ML-KEM-512-ipd_kemri_auth.der -------------------------------------------------------------------------------- /cms/tests/examples/1.3.6.1.4.1.22554.5.6.1_ML-KEM-512-ipd_kemri_ukm.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/1.3.6.1.4.1.22554.5.6.1_ML-KEM-512-ipd_kemri_ukm.der -------------------------------------------------------------------------------- /cms/tests/examples/GoodCACert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/GoodCACert.crt -------------------------------------------------------------------------------- /cms/tests/examples/GoodCACert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/GoodCACert.pem -------------------------------------------------------------------------------- /cms/tests/examples/ValidCertificatePathTest1EE.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/ValidCertificatePathTest1EE.crt -------------------------------------------------------------------------------- /cms/tests/examples/ValidCertificatePathTest1EE.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/ValidCertificatePathTest1EE.pem -------------------------------------------------------------------------------- /cms/tests/examples/apple_mdm_signature_der.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/apple_mdm_signature_der.bin -------------------------------------------------------------------------------- /cms/tests/examples/authroot.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/authroot.stl -------------------------------------------------------------------------------- /cms/tests/examples/authroot.stl.sd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/authroot.stl.sd -------------------------------------------------------------------------------- /cms/tests/examples/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/cert.pem -------------------------------------------------------------------------------- /cms/tests/examples/certData.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/certData.bin -------------------------------------------------------------------------------- /cms/tests/examples/cms_ber.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/cms_ber.bin -------------------------------------------------------------------------------- /cms/tests/examples/cms_der.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/cms_der.bin -------------------------------------------------------------------------------- /cms/tests/examples/compressed_data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/compressed_data.bin -------------------------------------------------------------------------------- /cms/tests/examples/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/data.txt -------------------------------------------------------------------------------- /cms/tests/examples/digested_data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/digested_data.bin -------------------------------------------------------------------------------- /cms/tests/examples/ec384-ee-key.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/ec384-ee-key.der -------------------------------------------------------------------------------- /cms/tests/examples/encrypted_data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/encrypted_data.bin -------------------------------------------------------------------------------- /cms/tests/examples/enveloped_data_kari.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/enveloped_data_kari.bin -------------------------------------------------------------------------------- /cms/tests/examples/enveloped_data_kekri.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/enveloped_data_kekri.bin -------------------------------------------------------------------------------- /cms/tests/examples/enveloped_data_ktri.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/enveloped_data_ktri.bin -------------------------------------------------------------------------------- /cms/tests/examples/enveloped_data_multi.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/enveloped_data_multi.bin -------------------------------------------------------------------------------- /cms/tests/examples/enveloped_data_pwri.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/enveloped_data_pwri.bin -------------------------------------------------------------------------------- /cms/tests/examples/example.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/example.pfx -------------------------------------------------------------------------------- /cms/tests/examples/examples_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/examples_notes.txt -------------------------------------------------------------------------------- /cms/tests/examples/keyEncryptedData.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/keyEncryptedData.bin -------------------------------------------------------------------------------- /cms/tests/examples/kms_ciphertext_for_recipient_1.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/kms_ciphertext_for_recipient_1.ber -------------------------------------------------------------------------------- /cms/tests/examples/kms_ciphertext_for_recipient_2.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/kms_ciphertext_for_recipient_2.ber -------------------------------------------------------------------------------- /cms/tests/examples/kms_ciphertext_for_recipient_3.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/kms_ciphertext_for_recipient_3.ber -------------------------------------------------------------------------------- /cms/tests/examples/kms_ciphertext_for_recipient_4.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/kms_ciphertext_for_recipient_4.ber -------------------------------------------------------------------------------- /cms/tests/examples/p256-priv.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/p256-priv.der -------------------------------------------------------------------------------- /cms/tests/examples/p256-pub.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/p256-pub.der -------------------------------------------------------------------------------- /cms/tests/examples/pkits.p7b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/pkits.p7b -------------------------------------------------------------------------------- /cms/tests/examples/pkits_ee.p7b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/pkits_ee.p7b -------------------------------------------------------------------------------- /cms/tests/examples/rsa2048-priv.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/rsa2048-priv.der -------------------------------------------------------------------------------- /cms/tests/examples/rsa_cert.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/rsa_cert.der -------------------------------------------------------------------------------- /cms/tests/examples/rsa_sk.pkcs1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/rsa_sk.pkcs1.pem -------------------------------------------------------------------------------- /cms/tests/examples/scep_der.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/scep_der.bin -------------------------------------------------------------------------------- /cms/tests/examples/sceptest_cert-selfsigned.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/sceptest_cert-selfsigned.pem -------------------------------------------------------------------------------- /cms/tests/examples/sceptest_csr.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/sceptest_csr.der -------------------------------------------------------------------------------- /cms/tests/examples/sceptest_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/sceptest_key.pem -------------------------------------------------------------------------------- /cms/tests/examples/sd.cms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/sd.cms -------------------------------------------------------------------------------- /cms/tests/examples/signer_info_explicit_attrs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/signer_info_explicit_attrs.bin -------------------------------------------------------------------------------- /cms/tests/examples/signer_info_sequence_not_set.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/examples/signer_info_sequence_not_set.bin -------------------------------------------------------------------------------- /cms/tests/kemri.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/kemri.rs -------------------------------------------------------------------------------- /cms/tests/signed_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/signed_data.rs -------------------------------------------------------------------------------- /cms/tests/tests_from_pkcs7_crate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/cms/tests/tests_from_pkcs7_crate.rs -------------------------------------------------------------------------------- /const-oid/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/CHANGELOG.md -------------------------------------------------------------------------------- /const-oid/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/Cargo.toml -------------------------------------------------------------------------------- /const-oid/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/LICENSE-APACHE -------------------------------------------------------------------------------- /const-oid/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/LICENSE-MIT -------------------------------------------------------------------------------- /const-oid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/README.md -------------------------------------------------------------------------------- /const-oid/oiddbgen/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/Cargo.lock -------------------------------------------------------------------------------- /const-oid/oiddbgen/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/Cargo.toml -------------------------------------------------------------------------------- /const-oid/oiddbgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/README.md -------------------------------------------------------------------------------- /const-oid/oiddbgen/fips202.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/fips202.md -------------------------------------------------------------------------------- /const-oid/oiddbgen/fips203.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/fips203.md -------------------------------------------------------------------------------- /const-oid/oiddbgen/fips204.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/fips204.md -------------------------------------------------------------------------------- /const-oid/oiddbgen/fips205.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/fips205.md -------------------------------------------------------------------------------- /const-oid/oiddbgen/krb5-oids.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/krb5-oids.asn -------------------------------------------------------------------------------- /const-oid/oiddbgen/ldap-parameters-3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/ldap-parameters-3.csv -------------------------------------------------------------------------------- /const-oid/oiddbgen/microsoft.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/microsoft.asn -------------------------------------------------------------------------------- /const-oid/oiddbgen/rfc2985.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/rfc2985.txt -------------------------------------------------------------------------------- /const-oid/oiddbgen/rfc3161.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/rfc3161.txt -------------------------------------------------------------------------------- /const-oid/oiddbgen/rfc5280.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/rfc5280.txt -------------------------------------------------------------------------------- /const-oid/oiddbgen/rfc5639.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/rfc5639.txt -------------------------------------------------------------------------------- /const-oid/oiddbgen/rfc5753.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/rfc5753.txt -------------------------------------------------------------------------------- /const-oid/oiddbgen/rfc5911.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/rfc5911.txt -------------------------------------------------------------------------------- /const-oid/oiddbgen/rfc5912.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/rfc5912.txt -------------------------------------------------------------------------------- /const-oid/oiddbgen/rfc6268.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/rfc6268.txt -------------------------------------------------------------------------------- /const-oid/oiddbgen/rfc6960.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/rfc6960.txt -------------------------------------------------------------------------------- /const-oid/oiddbgen/rfc6962.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/rfc6962.txt -------------------------------------------------------------------------------- /const-oid/oiddbgen/rfc7107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/rfc7107.txt -------------------------------------------------------------------------------- /const-oid/oiddbgen/rfc7292.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/rfc7292.txt -------------------------------------------------------------------------------- /const-oid/oiddbgen/rfc7299.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/rfc7299.txt -------------------------------------------------------------------------------- /const-oid/oiddbgen/rfc7693.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/rfc7693.txt -------------------------------------------------------------------------------- /const-oid/oiddbgen/rfc8410.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/rfc8410.txt -------------------------------------------------------------------------------- /const-oid/oiddbgen/rfc8894.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/rfc8894.md -------------------------------------------------------------------------------- /const-oid/oiddbgen/rfc9688.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/rfc9688.txt -------------------------------------------------------------------------------- /const-oid/oiddbgen/src/asn1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/src/asn1.rs -------------------------------------------------------------------------------- /const-oid/oiddbgen/src/ldap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/src/ldap.rs -------------------------------------------------------------------------------- /const-oid/oiddbgen/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/src/lib.rs -------------------------------------------------------------------------------- /const-oid/oiddbgen/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/src/main.rs -------------------------------------------------------------------------------- /const-oid/oiddbgen/src/node.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/src/node.rs -------------------------------------------------------------------------------- /const-oid/oiddbgen/src/root.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/src/root.rs -------------------------------------------------------------------------------- /const-oid/oiddbgen/src/spec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/src/spec.rs -------------------------------------------------------------------------------- /const-oid/oiddbgen/stb/bake.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/stb/bake.asn -------------------------------------------------------------------------------- /const-oid/oiddbgen/stb/bash.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/stb/bash.asn -------------------------------------------------------------------------------- /const-oid/oiddbgen/stb/belt.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/stb/belt.asn -------------------------------------------------------------------------------- /const-oid/oiddbgen/stb/bign.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/stb/bign.asn -------------------------------------------------------------------------------- /const-oid/oiddbgen/stb/bpki.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/stb/bpki.asn -------------------------------------------------------------------------------- /const-oid/oiddbgen/stb/brng.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/stb/brng.asn -------------------------------------------------------------------------------- /const-oid/oiddbgen/stb/btok.asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/stb/btok.asn -------------------------------------------------------------------------------- /const-oid/oiddbgen/tcg-tpm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/oiddbgen/tcg-tpm.md -------------------------------------------------------------------------------- /const-oid/src/arcs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/src/arcs.rs -------------------------------------------------------------------------------- /const-oid/src/buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/src/buffer.rs -------------------------------------------------------------------------------- /const-oid/src/checked.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/src/checked.rs -------------------------------------------------------------------------------- /const-oid/src/db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/src/db.rs -------------------------------------------------------------------------------- /const-oid/src/db/generated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/src/db/generated.rs -------------------------------------------------------------------------------- /const-oid/src/encoder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/src/encoder.rs -------------------------------------------------------------------------------- /const-oid/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/src/error.rs -------------------------------------------------------------------------------- /const-oid/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/src/lib.rs -------------------------------------------------------------------------------- /const-oid/src/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/src/parser.rs -------------------------------------------------------------------------------- /const-oid/src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/src/traits.rs -------------------------------------------------------------------------------- /const-oid/tests/oid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/tests/oid.rs -------------------------------------------------------------------------------- /const-oid/tests/oid_ref.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/tests/oid_ref.rs -------------------------------------------------------------------------------- /const-oid/tests/proptests.proptest-regressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/tests/proptests.proptest-regressions -------------------------------------------------------------------------------- /const-oid/tests/proptests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/const-oid/tests/proptests.rs -------------------------------------------------------------------------------- /crmf/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/crmf/CHANGELOG.md -------------------------------------------------------------------------------- /crmf/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/crmf/Cargo.toml -------------------------------------------------------------------------------- /crmf/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/crmf/LICENSE-APACHE -------------------------------------------------------------------------------- /crmf/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/crmf/LICENSE-MIT -------------------------------------------------------------------------------- /crmf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/crmf/README.md -------------------------------------------------------------------------------- /crmf/src/controls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/crmf/src/controls.rs -------------------------------------------------------------------------------- /crmf/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/crmf/src/lib.rs -------------------------------------------------------------------------------- /crmf/src/pop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/crmf/src/pop.rs -------------------------------------------------------------------------------- /crmf/src/reg_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/crmf/src/reg_info.rs -------------------------------------------------------------------------------- /crmf/src/request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/crmf/src/request.rs -------------------------------------------------------------------------------- /crmf/tests/controls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/crmf/tests/controls.rs -------------------------------------------------------------------------------- /crmf/tests/examples/certreqmsg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/crmf/tests/examples/certreqmsg.bin -------------------------------------------------------------------------------- /crmf/tests/examples/certreqmsgs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/crmf/tests/examples/certreqmsgs.bin -------------------------------------------------------------------------------- /crmf/tests/examples/certrequest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/crmf/tests/examples/certrequest.bin -------------------------------------------------------------------------------- /crmf/tests/examples/certtemplate.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/crmf/tests/examples/certtemplate.bin -------------------------------------------------------------------------------- /crmf/tests/request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/crmf/tests/request.rs -------------------------------------------------------------------------------- /der/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/CHANGELOG.md -------------------------------------------------------------------------------- /der/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/Cargo.toml -------------------------------------------------------------------------------- /der/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/LICENSE-APACHE -------------------------------------------------------------------------------- /der/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/LICENSE-MIT -------------------------------------------------------------------------------- /der/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/README.md -------------------------------------------------------------------------------- /der/src/arrayvec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/arrayvec.rs -------------------------------------------------------------------------------- /der/src/asn1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1.rs -------------------------------------------------------------------------------- /der/src/asn1/any.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/any.rs -------------------------------------------------------------------------------- /der/src/asn1/application.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/application.rs -------------------------------------------------------------------------------- /der/src/asn1/bit_string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/bit_string.rs -------------------------------------------------------------------------------- /der/src/asn1/bit_string/allowed_len_bit_string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/bit_string/allowed_len_bit_string.rs -------------------------------------------------------------------------------- /der/src/asn1/bmp_string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/bmp_string.rs -------------------------------------------------------------------------------- /der/src/asn1/boolean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/boolean.rs -------------------------------------------------------------------------------- /der/src/asn1/choice.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/choice.rs -------------------------------------------------------------------------------- /der/src/asn1/context_specific.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/context_specific.rs -------------------------------------------------------------------------------- /der/src/asn1/general_string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/general_string.rs -------------------------------------------------------------------------------- /der/src/asn1/generalized_time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/generalized_time.rs -------------------------------------------------------------------------------- /der/src/asn1/ia5_string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/ia5_string.rs -------------------------------------------------------------------------------- /der/src/asn1/integer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/integer.rs -------------------------------------------------------------------------------- /der/src/asn1/integer/int.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/integer/int.rs -------------------------------------------------------------------------------- /der/src/asn1/integer/uint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/integer/uint.rs -------------------------------------------------------------------------------- /der/src/asn1/internal_macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/internal_macros.rs -------------------------------------------------------------------------------- /der/src/asn1/null.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/null.rs -------------------------------------------------------------------------------- /der/src/asn1/octet_string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/octet_string.rs -------------------------------------------------------------------------------- /der/src/asn1/oid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/oid.rs -------------------------------------------------------------------------------- /der/src/asn1/optional.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/optional.rs -------------------------------------------------------------------------------- /der/src/asn1/printable_string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/printable_string.rs -------------------------------------------------------------------------------- /der/src/asn1/private.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/private.rs -------------------------------------------------------------------------------- /der/src/asn1/real.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/real.rs -------------------------------------------------------------------------------- /der/src/asn1/sequence.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/sequence.rs -------------------------------------------------------------------------------- /der/src/asn1/sequence_of.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/sequence_of.rs -------------------------------------------------------------------------------- /der/src/asn1/set_of.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/set_of.rs -------------------------------------------------------------------------------- /der/src/asn1/teletex_string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/teletex_string.rs -------------------------------------------------------------------------------- /der/src/asn1/utc_time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/utc_time.rs -------------------------------------------------------------------------------- /der/src/asn1/utf8_string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/utf8_string.rs -------------------------------------------------------------------------------- /der/src/asn1/videotex_string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/asn1/videotex_string.rs -------------------------------------------------------------------------------- /der/src/bytes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/bytes.rs -------------------------------------------------------------------------------- /der/src/datetime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/datetime.rs -------------------------------------------------------------------------------- /der/src/decode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/decode.rs -------------------------------------------------------------------------------- /der/src/document.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/document.rs -------------------------------------------------------------------------------- /der/src/encode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/encode.rs -------------------------------------------------------------------------------- /der/src/encode_ref.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/encode_ref.rs -------------------------------------------------------------------------------- /der/src/encoding_rules.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/encoding_rules.rs -------------------------------------------------------------------------------- /der/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/error.rs -------------------------------------------------------------------------------- /der/src/header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/header.rs -------------------------------------------------------------------------------- /der/src/length.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/length.rs -------------------------------------------------------------------------------- /der/src/length/indefinite.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/length/indefinite.rs -------------------------------------------------------------------------------- /der/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/lib.rs -------------------------------------------------------------------------------- /der/src/ord.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/ord.rs -------------------------------------------------------------------------------- /der/src/reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/reader.rs -------------------------------------------------------------------------------- /der/src/reader/pem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/reader/pem.rs -------------------------------------------------------------------------------- /der/src/reader/position.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/reader/position.rs -------------------------------------------------------------------------------- /der/src/reader/slice.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/reader/slice.rs -------------------------------------------------------------------------------- /der/src/referenced.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/referenced.rs -------------------------------------------------------------------------------- /der/src/string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/string.rs -------------------------------------------------------------------------------- /der/src/tag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/tag.rs -------------------------------------------------------------------------------- /der/src/tag/class.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/tag/class.rs -------------------------------------------------------------------------------- /der/src/tag/mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/tag/mode.rs -------------------------------------------------------------------------------- /der/src/tag/number.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/tag/number.rs -------------------------------------------------------------------------------- /der/src/writer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/writer.rs -------------------------------------------------------------------------------- /der/src/writer/pem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/writer/pem.rs -------------------------------------------------------------------------------- /der/src/writer/slice.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/src/writer/slice.rs -------------------------------------------------------------------------------- /der/tests/datetime.proptest-regressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/tests/datetime.proptest-regressions -------------------------------------------------------------------------------- /der/tests/datetime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/tests/datetime.rs -------------------------------------------------------------------------------- /der/tests/derive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/tests/derive.rs -------------------------------------------------------------------------------- /der/tests/derive_no_alloc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/tests/derive_no_alloc.rs -------------------------------------------------------------------------------- /der/tests/examples/spki.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/tests/examples/spki.der -------------------------------------------------------------------------------- /der/tests/examples/spki.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/tests/examples/spki.pem -------------------------------------------------------------------------------- /der/tests/pem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/tests/pem.rs -------------------------------------------------------------------------------- /der/tests/set_of.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der/tests/set_of.rs -------------------------------------------------------------------------------- /der_derive/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der_derive/CHANGELOG.md -------------------------------------------------------------------------------- /der_derive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der_derive/Cargo.toml -------------------------------------------------------------------------------- /der_derive/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der_derive/LICENSE-APACHE -------------------------------------------------------------------------------- /der_derive/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der_derive/LICENSE-MIT -------------------------------------------------------------------------------- /der_derive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der_derive/README.md -------------------------------------------------------------------------------- /der_derive/src/asn1_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der_derive/src/asn1_type.rs -------------------------------------------------------------------------------- /der_derive/src/attributes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der_derive/src/attributes.rs -------------------------------------------------------------------------------- /der_derive/src/bitstring.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der_derive/src/bitstring.rs -------------------------------------------------------------------------------- /der_derive/src/bitstring/field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der_derive/src/bitstring/field.rs -------------------------------------------------------------------------------- /der_derive/src/choice.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der_derive/src/choice.rs -------------------------------------------------------------------------------- /der_derive/src/choice/variant.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der_derive/src/choice/variant.rs -------------------------------------------------------------------------------- /der_derive/src/enumerated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der_derive/src/enumerated.rs -------------------------------------------------------------------------------- /der_derive/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der_derive/src/lib.rs -------------------------------------------------------------------------------- /der_derive/src/sequence.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der_derive/src/sequence.rs -------------------------------------------------------------------------------- /der_derive/src/sequence/field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der_derive/src/sequence/field.rs -------------------------------------------------------------------------------- /der_derive/src/tag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der_derive/src/tag.rs -------------------------------------------------------------------------------- /der_derive/src/value_ord.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/der_derive/src/value_ord.rs -------------------------------------------------------------------------------- /gss-api/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/gss-api/CHANGELOG.md -------------------------------------------------------------------------------- /gss-api/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/gss-api/Cargo.toml -------------------------------------------------------------------------------- /gss-api/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/gss-api/LICENSE-APACHE -------------------------------------------------------------------------------- /gss-api/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/gss-api/LICENSE-MIT -------------------------------------------------------------------------------- /gss-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/gss-api/README.md -------------------------------------------------------------------------------- /gss-api/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/gss-api/src/lib.rs -------------------------------------------------------------------------------- /gss-api/src/negotiation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/gss-api/src/negotiation.rs -------------------------------------------------------------------------------- /mcf/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/mcf/CHANGELOG.md -------------------------------------------------------------------------------- /mcf/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/mcf/Cargo.toml -------------------------------------------------------------------------------- /mcf/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/mcf/LICENSE-APACHE -------------------------------------------------------------------------------- /mcf/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/mcf/LICENSE-MIT -------------------------------------------------------------------------------- /mcf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/mcf/README.md -------------------------------------------------------------------------------- /mcf/src/base64.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/mcf/src/base64.rs -------------------------------------------------------------------------------- /mcf/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/mcf/src/error.rs -------------------------------------------------------------------------------- /mcf/src/fields.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/mcf/src/fields.rs -------------------------------------------------------------------------------- /mcf/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/mcf/src/lib.rs -------------------------------------------------------------------------------- /mcf/tests/mcf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/mcf/tests/mcf.rs -------------------------------------------------------------------------------- /pem-rfc7468/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pem-rfc7468/CHANGELOG.md -------------------------------------------------------------------------------- /pem-rfc7468/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pem-rfc7468/Cargo.toml -------------------------------------------------------------------------------- /pem-rfc7468/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pem-rfc7468/LICENSE-APACHE -------------------------------------------------------------------------------- /pem-rfc7468/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pem-rfc7468/LICENSE-MIT -------------------------------------------------------------------------------- /pem-rfc7468/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pem-rfc7468/README.md -------------------------------------------------------------------------------- /pem-rfc7468/src/decoder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pem-rfc7468/src/decoder.rs -------------------------------------------------------------------------------- /pem-rfc7468/src/encoder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pem-rfc7468/src/encoder.rs -------------------------------------------------------------------------------- /pem-rfc7468/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pem-rfc7468/src/error.rs -------------------------------------------------------------------------------- /pem-rfc7468/src/grammar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pem-rfc7468/src/grammar.rs -------------------------------------------------------------------------------- /pem-rfc7468/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pem-rfc7468/src/lib.rs -------------------------------------------------------------------------------- /pem-rfc7468/tests/decode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pem-rfc7468/tests/decode.rs -------------------------------------------------------------------------------- /pem-rfc7468/tests/encode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pem-rfc7468/tests/encode.rs -------------------------------------------------------------------------------- /pem-rfc7468/tests/examples/chosen_header.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pem-rfc7468/tests/examples/chosen_header.pem -------------------------------------------------------------------------------- /pem-rfc7468/tests/examples/ed25519_id.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pem-rfc7468/tests/examples/ed25519_id.pem -------------------------------------------------------------------------------- /pem-rfc7468/tests/examples/pkcs1.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pem-rfc7468/tests/examples/pkcs1.der -------------------------------------------------------------------------------- /pem-rfc7468/tests/examples/pkcs1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pem-rfc7468/tests/examples/pkcs1.pem -------------------------------------------------------------------------------- /pem-rfc7468/tests/examples/pkcs1_with_preceding_junk.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pem-rfc7468/tests/examples/pkcs1_with_preceding_junk.pem -------------------------------------------------------------------------------- /pem-rfc7468/tests/examples/pkcs8-enc.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pem-rfc7468/tests/examples/pkcs8-enc.der -------------------------------------------------------------------------------- /pem-rfc7468/tests/examples/pkcs8-enc.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pem-rfc7468/tests/examples/pkcs8-enc.pem -------------------------------------------------------------------------------- /pem-rfc7468/tests/examples/pkcs8.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pem-rfc7468/tests/examples/pkcs8.der -------------------------------------------------------------------------------- /pem-rfc7468/tests/examples/pkcs8.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pem-rfc7468/tests/examples/pkcs8.pem -------------------------------------------------------------------------------- /pem-rfc7468/tests/examples/ssh-id_ed25519.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pem-rfc7468/tests/examples/ssh-id_ed25519.pem -------------------------------------------------------------------------------- /pem-rfc7468/tests/examples/ssh_rsa_pem_password.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pem-rfc7468/tests/examples/ssh_rsa_pem_password.pem -------------------------------------------------------------------------------- /phc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/phc/CHANGELOG.md -------------------------------------------------------------------------------- /phc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/phc/Cargo.toml -------------------------------------------------------------------------------- /phc/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/phc/LICENSE-APACHE -------------------------------------------------------------------------------- /phc/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/phc/LICENSE-MIT -------------------------------------------------------------------------------- /phc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/phc/README.md -------------------------------------------------------------------------------- /phc/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/phc/src/error.rs -------------------------------------------------------------------------------- /phc/src/ident.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/phc/src/ident.rs -------------------------------------------------------------------------------- /phc/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/phc/src/lib.rs -------------------------------------------------------------------------------- /phc/src/output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/phc/src/output.rs -------------------------------------------------------------------------------- /phc/src/params.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/phc/src/params.rs -------------------------------------------------------------------------------- /phc/src/salt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/phc/src/salt.rs -------------------------------------------------------------------------------- /phc/src/string_buf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/phc/src/string_buf.rs -------------------------------------------------------------------------------- /phc/src/value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/phc/src/value.rs -------------------------------------------------------------------------------- /phc/tests/encoding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/phc/tests/encoding.rs -------------------------------------------------------------------------------- /phc/tests/password_hash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/phc/tests/password_hash.rs -------------------------------------------------------------------------------- /phc/tests/test_vectors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/phc/tests/test_vectors.rs -------------------------------------------------------------------------------- /pkcs1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/CHANGELOG.md -------------------------------------------------------------------------------- /pkcs1/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/Cargo.toml -------------------------------------------------------------------------------- /pkcs1/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/LICENSE-APACHE -------------------------------------------------------------------------------- /pkcs1/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/LICENSE-MIT -------------------------------------------------------------------------------- /pkcs1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/README.md -------------------------------------------------------------------------------- /pkcs1/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/src/error.rs -------------------------------------------------------------------------------- /pkcs1/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/src/lib.rs -------------------------------------------------------------------------------- /pkcs1/src/params.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/src/params.rs -------------------------------------------------------------------------------- /pkcs1/src/private_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/src/private_key.rs -------------------------------------------------------------------------------- /pkcs1/src/private_key/other_prime_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/src/private_key/other_prime_info.rs -------------------------------------------------------------------------------- /pkcs1/src/public_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/src/public_key.rs -------------------------------------------------------------------------------- /pkcs1/src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/src/traits.rs -------------------------------------------------------------------------------- /pkcs1/src/version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/src/version.rs -------------------------------------------------------------------------------- /pkcs1/tests/examples/rsa2048-priv-3prime.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/tests/examples/rsa2048-priv-3prime.der -------------------------------------------------------------------------------- /pkcs1/tests/examples/rsa2048-priv-3prime.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/tests/examples/rsa2048-priv-3prime.pem -------------------------------------------------------------------------------- /pkcs1/tests/examples/rsa2048-priv.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/tests/examples/rsa2048-priv.der -------------------------------------------------------------------------------- /pkcs1/tests/examples/rsa2048-priv.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/tests/examples/rsa2048-priv.pem -------------------------------------------------------------------------------- /pkcs1/tests/examples/rsa2048-pub.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/tests/examples/rsa2048-pub.der -------------------------------------------------------------------------------- /pkcs1/tests/examples/rsa2048-pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/tests/examples/rsa2048-pub.pem -------------------------------------------------------------------------------- /pkcs1/tests/examples/rsa4096-priv.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/tests/examples/rsa4096-priv.der -------------------------------------------------------------------------------- /pkcs1/tests/examples/rsa4096-priv.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/tests/examples/rsa4096-priv.pem -------------------------------------------------------------------------------- /pkcs1/tests/examples/rsa4096-pub.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/tests/examples/rsa4096-pub.der -------------------------------------------------------------------------------- /pkcs1/tests/examples/rsa4096-pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/tests/examples/rsa4096-pub.pem -------------------------------------------------------------------------------- /pkcs1/tests/params.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/tests/params.rs -------------------------------------------------------------------------------- /pkcs1/tests/private_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/tests/private_key.rs -------------------------------------------------------------------------------- /pkcs1/tests/public_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/tests/public_key.rs -------------------------------------------------------------------------------- /pkcs1/tests/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs1/tests/traits.rs -------------------------------------------------------------------------------- /pkcs12/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/CHANGELOG.md -------------------------------------------------------------------------------- /pkcs12/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/Cargo.toml -------------------------------------------------------------------------------- /pkcs12/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/LICENSE-APACHE -------------------------------------------------------------------------------- /pkcs12/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/LICENSE-MIT -------------------------------------------------------------------------------- /pkcs12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/README.md -------------------------------------------------------------------------------- /pkcs12/src/authenticated_safe.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/src/authenticated_safe.rs -------------------------------------------------------------------------------- /pkcs12/src/bag_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/src/bag_type.rs -------------------------------------------------------------------------------- /pkcs12/src/cert_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/src/cert_type.rs -------------------------------------------------------------------------------- /pkcs12/src/crl_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/src/crl_type.rs -------------------------------------------------------------------------------- /pkcs12/src/digest_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/src/digest_info.rs -------------------------------------------------------------------------------- /pkcs12/src/kdf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/src/kdf.rs -------------------------------------------------------------------------------- /pkcs12/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/src/lib.rs -------------------------------------------------------------------------------- /pkcs12/src/mac_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/src/mac_data.rs -------------------------------------------------------------------------------- /pkcs12/src/pbe_params.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/src/pbe_params.rs -------------------------------------------------------------------------------- /pkcs12/src/pfx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/src/pfx.rs -------------------------------------------------------------------------------- /pkcs12/src/safe_bag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/src/safe_bag.rs -------------------------------------------------------------------------------- /pkcs12/tests/cert_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/cert_tests.rs -------------------------------------------------------------------------------- /pkcs12/tests/examples/GoodCACert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/GoodCACert.crt -------------------------------------------------------------------------------- /pkcs12/tests/examples/GoodCACert.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/GoodCACert.der -------------------------------------------------------------------------------- /pkcs12/tests/examples/ValidCertificatePathTest1EE.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/ValidCertificatePathTest1EE.crt -------------------------------------------------------------------------------- /pkcs12/tests/examples/ValidCertificatePathTest1EE.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/ValidCertificatePathTest1EE.key -------------------------------------------------------------------------------- /pkcs12/tests/examples/ValidCertificatePathTest1EE.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/ValidCertificatePathTest1EE.p12 -------------------------------------------------------------------------------- /pkcs12/tests/examples/ValidCertificatePathTest1EE.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/ValidCertificatePathTest1EE.pem -------------------------------------------------------------------------------- /pkcs12/tests/examples/ValidCertificatePathTest1EE_firefox.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/ValidCertificatePathTest1EE_firefox.p12 -------------------------------------------------------------------------------- /pkcs12/tests/examples/ValidCertificatePathTest1EE_macos.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/ValidCertificatePathTest1EE_macos.p12 -------------------------------------------------------------------------------- /pkcs12/tests/examples/ValidCertificatePathTest1EE_windows_aes.p12.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/ValidCertificatePathTest1EE_windows_aes.p12.pfx -------------------------------------------------------------------------------- /pkcs12/tests/examples/ValidCertificatePathTest1EE_windows_tdes.p12.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/ValidCertificatePathTest1EE_windows_tdes.p12.pfx -------------------------------------------------------------------------------- /pkcs12/tests/examples/cert.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/cert.der -------------------------------------------------------------------------------- /pkcs12/tests/examples/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/cert.pem -------------------------------------------------------------------------------- /pkcs12/tests/examples/example.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/example.pfx -------------------------------------------------------------------------------- /pkcs12/tests/examples/example10.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/example10.pfx -------------------------------------------------------------------------------- /pkcs12/tests/examples/example11.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/example11.pfx -------------------------------------------------------------------------------- /pkcs12/tests/examples/example12.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/example12.pfx -------------------------------------------------------------------------------- /pkcs12/tests/examples/example13.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/example13.pfx -------------------------------------------------------------------------------- /pkcs12/tests/examples/example14.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/example14.pfx -------------------------------------------------------------------------------- /pkcs12/tests/examples/example15.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/example15.pfx -------------------------------------------------------------------------------- /pkcs12/tests/examples/example16.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/example16.pfx -------------------------------------------------------------------------------- /pkcs12/tests/examples/example17.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/example17.pfx -------------------------------------------------------------------------------- /pkcs12/tests/examples/example2.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/example2.pfx -------------------------------------------------------------------------------- /pkcs12/tests/examples/example3.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/example3.pfx -------------------------------------------------------------------------------- /pkcs12/tests/examples/example4.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/example4.pfx -------------------------------------------------------------------------------- /pkcs12/tests/examples/example5.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/example5.pfx -------------------------------------------------------------------------------- /pkcs12/tests/examples/example6.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/example6.pfx -------------------------------------------------------------------------------- /pkcs12/tests/examples/example7.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/example7.pfx -------------------------------------------------------------------------------- /pkcs12/tests/examples/example8.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/example8.pfx -------------------------------------------------------------------------------- /pkcs12/tests/examples/example9.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/example9.pfx -------------------------------------------------------------------------------- /pkcs12/tests/examples/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/gen.sh -------------------------------------------------------------------------------- /pkcs12/tests/examples/key.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/key.der -------------------------------------------------------------------------------- /pkcs12/tests/examples/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/examples/key.pem -------------------------------------------------------------------------------- /pkcs12/tests/kdf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs12/tests/kdf.rs -------------------------------------------------------------------------------- /pkcs5/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/CHANGELOG.md -------------------------------------------------------------------------------- /pkcs5/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/Cargo.toml -------------------------------------------------------------------------------- /pkcs5/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/LICENSE-APACHE -------------------------------------------------------------------------------- /pkcs5/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/LICENSE-MIT -------------------------------------------------------------------------------- /pkcs5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/README.md -------------------------------------------------------------------------------- /pkcs5/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/src/error.rs -------------------------------------------------------------------------------- /pkcs5/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/src/lib.rs -------------------------------------------------------------------------------- /pkcs5/src/pbes1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/src/pbes1.rs -------------------------------------------------------------------------------- /pkcs5/src/pbes2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/src/pbes2.rs -------------------------------------------------------------------------------- /pkcs5/src/pbes2/encryption.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/src/pbes2/encryption.rs -------------------------------------------------------------------------------- /pkcs5/src/pbes2/kdf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/src/pbes2/kdf.rs -------------------------------------------------------------------------------- /pkcs5/src/pbes2/kdf/salt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/src/pbes2/kdf/salt.rs -------------------------------------------------------------------------------- /pkcs5/tests/encryption.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/encryption.rs -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-128-cbc_hmacWithSHA1_algid.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-128-cbc_hmacWithSHA1_algid.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-128-cbc_hmacWithSHA1_ciphertext.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-128-cbc_hmacWithSHA1_ciphertext.bin -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-128-cbc_hmacWithSHA224_algid.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-128-cbc_hmacWithSHA224_algid.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-128-cbc_hmacWithSHA224_ciphertext.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-128-cbc_hmacWithSHA224_ciphertext.bin -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-128-cbc_hmacWithSHA256_algid.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-128-cbc_hmacWithSHA256_algid.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-128-cbc_hmacWithSHA256_ciphertext.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-128-cbc_hmacWithSHA256_ciphertext.bin -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-128-cbc_hmacWithSHA384_algid.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-128-cbc_hmacWithSHA384_algid.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-128-cbc_hmacWithSHA384_ciphertext.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-128-cbc_hmacWithSHA384_ciphertext.bin -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-128-cbc_hmacWithSHA512_algid.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-128-cbc_hmacWithSHA512_algid.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-128-cbc_hmacWithSHA512_ciphertext.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-128-cbc_hmacWithSHA512_ciphertext.bin -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-192-cbc_hmacWithSHA1_algid.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-192-cbc_hmacWithSHA1_algid.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-192-cbc_hmacWithSHA1_ciphertext.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-192-cbc_hmacWithSHA1_ciphertext.bin -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-192-cbc_hmacWithSHA224_algid.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-192-cbc_hmacWithSHA224_algid.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-192-cbc_hmacWithSHA224_ciphertext.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-192-cbc_hmacWithSHA224_ciphertext.bin -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-192-cbc_hmacWithSHA256_algid.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-192-cbc_hmacWithSHA256_algid.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-192-cbc_hmacWithSHA256_ciphertext.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-192-cbc_hmacWithSHA256_ciphertext.bin -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-192-cbc_hmacWithSHA384_algid.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-192-cbc_hmacWithSHA384_algid.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-192-cbc_hmacWithSHA384_ciphertext.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-192-cbc_hmacWithSHA384_ciphertext.bin -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-192-cbc_hmacWithSHA512_algid.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-192-cbc_hmacWithSHA512_algid.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-192-cbc_hmacWithSHA512_ciphertext.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-192-cbc_hmacWithSHA512_ciphertext.bin -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-256-cbc_hmacWithSHA1_algid.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-256-cbc_hmacWithSHA1_algid.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-256-cbc_hmacWithSHA1_ciphertext.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-256-cbc_hmacWithSHA1_ciphertext.bin -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-256-cbc_hmacWithSHA224_algid.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-256-cbc_hmacWithSHA224_algid.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-256-cbc_hmacWithSHA224_ciphertext.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-256-cbc_hmacWithSHA224_ciphertext.bin -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-256-cbc_hmacWithSHA256_algid-no-param.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-256-cbc_hmacWithSHA256_algid-no-param.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-256-cbc_hmacWithSHA256_algid.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-256-cbc_hmacWithSHA256_algid.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-256-cbc_hmacWithSHA256_ciphertext.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-256-cbc_hmacWithSHA256_ciphertext.bin -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-256-cbc_hmacWithSHA384_algid.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-256-cbc_hmacWithSHA384_algid.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-256-cbc_hmacWithSHA384_ciphertext.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-256-cbc_hmacWithSHA384_ciphertext.bin -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-256-cbc_hmacWithSHA512_algid.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-256-cbc_hmacWithSHA512_algid.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/pbes2_aes-256-cbc_hmacWithSHA512_ciphertext.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/pbes2_aes-256-cbc_hmacWithSHA512_ciphertext.bin -------------------------------------------------------------------------------- /pkcs5/tests/examples/re-gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/re-gen.sh -------------------------------------------------------------------------------- /pkcs5/tests/examples/rsa_sk.pkcs1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/rsa_sk.pkcs1.pem -------------------------------------------------------------------------------- /pkcs5/tests/examples/rsa_sk.pkcs8.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/rsa_sk.pkcs8.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/rsa_sk_aes-128-cbc_hmacWithSHA1.pkcs8.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/rsa_sk_aes-128-cbc_hmacWithSHA1.pkcs8.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/rsa_sk_aes-128-cbc_hmacWithSHA224.pkcs8.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/rsa_sk_aes-128-cbc_hmacWithSHA224.pkcs8.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/rsa_sk_aes-128-cbc_hmacWithSHA256.pkcs8.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/rsa_sk_aes-128-cbc_hmacWithSHA256.pkcs8.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/rsa_sk_aes-128-cbc_hmacWithSHA384.pkcs8.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/rsa_sk_aes-128-cbc_hmacWithSHA384.pkcs8.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/rsa_sk_aes-128-cbc_hmacWithSHA512.pkcs8.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/rsa_sk_aes-128-cbc_hmacWithSHA512.pkcs8.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/rsa_sk_aes-192-cbc_hmacWithSHA1.pkcs8.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/rsa_sk_aes-192-cbc_hmacWithSHA1.pkcs8.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/rsa_sk_aes-192-cbc_hmacWithSHA224.pkcs8.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/rsa_sk_aes-192-cbc_hmacWithSHA224.pkcs8.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/rsa_sk_aes-192-cbc_hmacWithSHA256.pkcs8.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/rsa_sk_aes-192-cbc_hmacWithSHA256.pkcs8.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/rsa_sk_aes-192-cbc_hmacWithSHA384.pkcs8.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/rsa_sk_aes-192-cbc_hmacWithSHA384.pkcs8.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/rsa_sk_aes-192-cbc_hmacWithSHA512.pkcs8.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/rsa_sk_aes-192-cbc_hmacWithSHA512.pkcs8.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/rsa_sk_aes-256-cbc_hmacWithSHA1.pkcs8.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/rsa_sk_aes-256-cbc_hmacWithSHA1.pkcs8.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/rsa_sk_aes-256-cbc_hmacWithSHA224.pkcs8.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/rsa_sk_aes-256-cbc_hmacWithSHA224.pkcs8.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/rsa_sk_aes-256-cbc_hmacWithSHA256.pkcs8.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/rsa_sk_aes-256-cbc_hmacWithSHA256.pkcs8.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/rsa_sk_aes-256-cbc_hmacWithSHA384.pkcs8.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/rsa_sk_aes-256-cbc_hmacWithSHA384.pkcs8.der -------------------------------------------------------------------------------- /pkcs5/tests/examples/rsa_sk_aes-256-cbc_hmacWithSHA512.pkcs8.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/examples/rsa_sk_aes-256-cbc_hmacWithSHA512.pkcs8.der -------------------------------------------------------------------------------- /pkcs5/tests/pbes2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/pbes2.rs -------------------------------------------------------------------------------- /pkcs5/tests/pbes2_pbkdf2_decrypt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs5/tests/pbes2_pbkdf2_decrypt.rs -------------------------------------------------------------------------------- /pkcs8/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/CHANGELOG.md -------------------------------------------------------------------------------- /pkcs8/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/Cargo.toml -------------------------------------------------------------------------------- /pkcs8/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/LICENSE-APACHE -------------------------------------------------------------------------------- /pkcs8/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/LICENSE-MIT -------------------------------------------------------------------------------- /pkcs8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/README.md -------------------------------------------------------------------------------- /pkcs8/src/encrypted_private_key_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/src/encrypted_private_key_info.rs -------------------------------------------------------------------------------- /pkcs8/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/src/error.rs -------------------------------------------------------------------------------- /pkcs8/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/src/lib.rs -------------------------------------------------------------------------------- /pkcs8/src/private_key_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/src/private_key_info.rs -------------------------------------------------------------------------------- /pkcs8/src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/src/traits.rs -------------------------------------------------------------------------------- /pkcs8/src/version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/src/version.rs -------------------------------------------------------------------------------- /pkcs8/tests/encrypted_private_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/encrypted_private_key.rs -------------------------------------------------------------------------------- /pkcs8/tests/examples/bign256-priv.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/bign256-priv.der -------------------------------------------------------------------------------- /pkcs8/tests/examples/bign256-priv.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/bign256-priv.pem -------------------------------------------------------------------------------- /pkcs8/tests/examples/ed25519-encpriv-aes128-gcm-scrypt.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/ed25519-encpriv-aes128-gcm-scrypt.der -------------------------------------------------------------------------------- /pkcs8/tests/examples/ed25519-encpriv-aes128-pbkdf2-sha1.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/ed25519-encpriv-aes128-pbkdf2-sha1.der -------------------------------------------------------------------------------- /pkcs8/tests/examples/ed25519-encpriv-aes256-gcm-scrypt.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/ed25519-encpriv-aes256-gcm-scrypt.der -------------------------------------------------------------------------------- /pkcs8/tests/examples/ed25519-encpriv-aes256-pbkdf2-sha256.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/ed25519-encpriv-aes256-pbkdf2-sha256.der -------------------------------------------------------------------------------- /pkcs8/tests/examples/ed25519-encpriv-aes256-pbkdf2-sha256.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/ed25519-encpriv-aes256-pbkdf2-sha256.pem -------------------------------------------------------------------------------- /pkcs8/tests/examples/ed25519-encpriv-aes256-scrypt.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/ed25519-encpriv-aes256-scrypt.der -------------------------------------------------------------------------------- /pkcs8/tests/examples/ed25519-encpriv-aes256-scrypt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/ed25519-encpriv-aes256-scrypt.pem -------------------------------------------------------------------------------- /pkcs8/tests/examples/ed25519-encpriv-des-pbkdf2-sha256.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/ed25519-encpriv-des-pbkdf2-sha256.der -------------------------------------------------------------------------------- /pkcs8/tests/examples/ed25519-encpriv-des3-pbkdf2-sha256.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/ed25519-encpriv-des3-pbkdf2-sha256.der -------------------------------------------------------------------------------- /pkcs8/tests/examples/ed25519-priv-pkcs8v1.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/ed25519-priv-pkcs8v1.der -------------------------------------------------------------------------------- /pkcs8/tests/examples/ed25519-priv-pkcs8v1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/ed25519-priv-pkcs8v1.pem -------------------------------------------------------------------------------- /pkcs8/tests/examples/ed25519-priv-pkcs8v2.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/ed25519-priv-pkcs8v2.der -------------------------------------------------------------------------------- /pkcs8/tests/examples/ed25519-priv-pkcs8v2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/ed25519-priv-pkcs8v2.pem -------------------------------------------------------------------------------- /pkcs8/tests/examples/ed25519-pub.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/ed25519-pub.der -------------------------------------------------------------------------------- /pkcs8/tests/examples/ed25519-pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/ed25519-pub.pem -------------------------------------------------------------------------------- /pkcs8/tests/examples/p256-priv.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/p256-priv.der -------------------------------------------------------------------------------- /pkcs8/tests/examples/p256-priv.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/p256-priv.pem -------------------------------------------------------------------------------- /pkcs8/tests/examples/p256-pub.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/p256-pub.der -------------------------------------------------------------------------------- /pkcs8/tests/examples/p256-pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/p256-pub.pem -------------------------------------------------------------------------------- /pkcs8/tests/examples/rsa2048-priv.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/rsa2048-priv.der -------------------------------------------------------------------------------- /pkcs8/tests/examples/rsa2048-priv.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/rsa2048-priv.pem -------------------------------------------------------------------------------- /pkcs8/tests/examples/rsa2048-pub.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/rsa2048-pub.der -------------------------------------------------------------------------------- /pkcs8/tests/examples/rsa2048-pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/rsa2048-pub.pem -------------------------------------------------------------------------------- /pkcs8/tests/examples/x25519-priv.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/x25519-priv.der -------------------------------------------------------------------------------- /pkcs8/tests/examples/x25519-priv.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/examples/x25519-priv.pem -------------------------------------------------------------------------------- /pkcs8/tests/private_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/private_key.rs -------------------------------------------------------------------------------- /pkcs8/tests/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/pkcs8/tests/traits.rs -------------------------------------------------------------------------------- /sec1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/sec1/CHANGELOG.md -------------------------------------------------------------------------------- /sec1/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/sec1/Cargo.toml -------------------------------------------------------------------------------- /sec1/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/sec1/LICENSE-APACHE -------------------------------------------------------------------------------- /sec1/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/sec1/LICENSE-MIT -------------------------------------------------------------------------------- /sec1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/sec1/README.md -------------------------------------------------------------------------------- /sec1/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/sec1/src/error.rs -------------------------------------------------------------------------------- /sec1/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/sec1/src/lib.rs -------------------------------------------------------------------------------- /sec1/src/parameters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/sec1/src/parameters.rs -------------------------------------------------------------------------------- /sec1/src/point.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/sec1/src/point.rs -------------------------------------------------------------------------------- /sec1/src/private_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/sec1/src/private_key.rs -------------------------------------------------------------------------------- /sec1/src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/sec1/src/traits.rs -------------------------------------------------------------------------------- /sec1/tests/examples/p256-priv.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/sec1/tests/examples/p256-priv.der -------------------------------------------------------------------------------- /sec1/tests/examples/p256-priv.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/sec1/tests/examples/p256-priv.pem -------------------------------------------------------------------------------- /sec1/tests/private_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/sec1/tests/private_key.rs -------------------------------------------------------------------------------- /sec1/tests/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/sec1/tests/traits.rs -------------------------------------------------------------------------------- /serdect/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/serdect/CHANGELOG.md -------------------------------------------------------------------------------- /serdect/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/serdect/Cargo.toml -------------------------------------------------------------------------------- /serdect/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/serdect/LICENSE-APACHE -------------------------------------------------------------------------------- /serdect/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/serdect/LICENSE-MIT -------------------------------------------------------------------------------- /serdect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/serdect/README.md -------------------------------------------------------------------------------- /serdect/src/array.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/serdect/src/array.rs -------------------------------------------------------------------------------- /serdect/src/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/serdect/src/common.rs -------------------------------------------------------------------------------- /serdect/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/serdect/src/lib.rs -------------------------------------------------------------------------------- /serdect/src/slice.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/serdect/src/slice.rs -------------------------------------------------------------------------------- /serdect/tests/bincode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/serdect/tests/bincode.rs -------------------------------------------------------------------------------- /serdect/tests/cbor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/serdect/tests/cbor.rs -------------------------------------------------------------------------------- /serdect/tests/messagepack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/serdect/tests/messagepack.rs -------------------------------------------------------------------------------- /serdect/tests/serde-json-core.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/serdect/tests/serde-json-core.rs -------------------------------------------------------------------------------- /serdect/tests/serde_json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/serdect/tests/serde_json.rs -------------------------------------------------------------------------------- /serdect/tests/toml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/serdect/tests/toml.rs -------------------------------------------------------------------------------- /spki/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/spki/CHANGELOG.md -------------------------------------------------------------------------------- /spki/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/spki/Cargo.toml -------------------------------------------------------------------------------- /spki/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/spki/LICENSE-APACHE -------------------------------------------------------------------------------- /spki/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/spki/LICENSE-MIT -------------------------------------------------------------------------------- /spki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/spki/README.md -------------------------------------------------------------------------------- /spki/benches/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/spki/benches/mod.rs -------------------------------------------------------------------------------- /spki/src/algorithm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/spki/src/algorithm.rs -------------------------------------------------------------------------------- /spki/src/digest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/spki/src/digest.rs -------------------------------------------------------------------------------- /spki/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/spki/src/error.rs -------------------------------------------------------------------------------- /spki/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/spki/src/lib.rs -------------------------------------------------------------------------------- /spki/src/spki.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/spki/src/spki.rs -------------------------------------------------------------------------------- /spki/src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/spki/src/traits.rs -------------------------------------------------------------------------------- /spki/tests/examples/ed25519-pub.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/spki/tests/examples/ed25519-pub.der -------------------------------------------------------------------------------- /spki/tests/examples/ed25519-pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/spki/tests/examples/ed25519-pub.pem -------------------------------------------------------------------------------- /spki/tests/examples/p256-pub.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/spki/tests/examples/p256-pub.der -------------------------------------------------------------------------------- /spki/tests/examples/p256-pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/spki/tests/examples/p256-pub.pem -------------------------------------------------------------------------------- /spki/tests/examples/rsa2048-pub.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/spki/tests/examples/rsa2048-pub.der -------------------------------------------------------------------------------- /spki/tests/examples/rsa2048-pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/spki/tests/examples/rsa2048-pub.pem -------------------------------------------------------------------------------- /spki/tests/spki.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/spki/tests/spki.rs -------------------------------------------------------------------------------- /spki/tests/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/spki/tests/traits.rs -------------------------------------------------------------------------------- /tai64/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tai64/CHANGELOG.md -------------------------------------------------------------------------------- /tai64/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tai64/Cargo.toml -------------------------------------------------------------------------------- /tai64/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tai64/LICENSE-APACHE -------------------------------------------------------------------------------- /tai64/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tai64/LICENSE-MIT -------------------------------------------------------------------------------- /tai64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tai64/README.md -------------------------------------------------------------------------------- /tai64/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tai64/src/lib.rs -------------------------------------------------------------------------------- /tls_codec/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/CHANGELOG.md -------------------------------------------------------------------------------- /tls_codec/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/Cargo.toml -------------------------------------------------------------------------------- /tls_codec/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/LICENSE-APACHE -------------------------------------------------------------------------------- /tls_codec/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/LICENSE-MIT -------------------------------------------------------------------------------- /tls_codec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/README.md -------------------------------------------------------------------------------- /tls_codec/benches/quic_vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/benches/quic_vec.rs -------------------------------------------------------------------------------- /tls_codec/benches/tls_vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/benches/tls_vec.rs -------------------------------------------------------------------------------- /tls_codec/derive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/derive/Cargo.toml -------------------------------------------------------------------------------- /tls_codec/derive/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/derive/LICENSE-APACHE -------------------------------------------------------------------------------- /tls_codec/derive/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/derive/LICENSE-MIT -------------------------------------------------------------------------------- /tls_codec/derive/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/derive/src/lib.rs -------------------------------------------------------------------------------- /tls_codec/derive/tests/attributes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/derive/tests/attributes.rs -------------------------------------------------------------------------------- /tls_codec/derive/tests/decode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/derive/tests/decode.rs -------------------------------------------------------------------------------- /tls_codec/derive/tests/decode_bytes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/derive/tests/decode_bytes.rs -------------------------------------------------------------------------------- /tls_codec/derive/tests/encode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/derive/tests/encode.rs -------------------------------------------------------------------------------- /tls_codec/derive/tests/encode_bytes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/derive/tests/encode_bytes.rs -------------------------------------------------------------------------------- /tls_codec/fuzz/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | corpus 3 | artifacts 4 | coverage 5 | -------------------------------------------------------------------------------- /tls_codec/fuzz/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/fuzz/Cargo.lock -------------------------------------------------------------------------------- /tls_codec/fuzz/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/fuzz/Cargo.toml -------------------------------------------------------------------------------- /tls_codec/fuzz/fuzz_targets/inverse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/fuzz/fuzz_targets/inverse.rs -------------------------------------------------------------------------------- /tls_codec/src/arrays.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/src/arrays.rs -------------------------------------------------------------------------------- /tls_codec/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/src/lib.rs -------------------------------------------------------------------------------- /tls_codec/src/primitives.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/src/primitives.rs -------------------------------------------------------------------------------- /tls_codec/src/quic_vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/src/quic_vec.rs -------------------------------------------------------------------------------- /tls_codec/src/tls_vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/src/tls_vec.rs -------------------------------------------------------------------------------- /tls_codec/tests/decode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/tests/decode.rs -------------------------------------------------------------------------------- /tls_codec/tests/decode_bytes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/tests/decode_bytes.rs -------------------------------------------------------------------------------- /tls_codec/tests/encode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/tests/encode.rs -------------------------------------------------------------------------------- /tls_codec/tests/encode_bytes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/tests/encode_bytes.rs -------------------------------------------------------------------------------- /tls_codec/tests/serde_impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/tls_codec/tests/serde_impls.rs -------------------------------------------------------------------------------- /x509-cert/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/CHANGELOG.md -------------------------------------------------------------------------------- /x509-cert/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/Cargo.toml -------------------------------------------------------------------------------- /x509-cert/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/LICENSE-APACHE -------------------------------------------------------------------------------- /x509-cert/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/LICENSE-MIT -------------------------------------------------------------------------------- /x509-cert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/README.md -------------------------------------------------------------------------------- /x509-cert/fuzz/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | corpus 3 | artifacts 4 | Cargo.lock 5 | -------------------------------------------------------------------------------- /x509-cert/fuzz/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/fuzz/Cargo.toml -------------------------------------------------------------------------------- /x509-cert/fuzz/inputs/rsa2048-csr.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/fuzz/inputs/rsa2048-csr.der -------------------------------------------------------------------------------- /x509-cert/fuzz/src/bin/certreq.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/fuzz/src/bin/certreq.rs -------------------------------------------------------------------------------- /x509-cert/fuzz/src/bin/certreqinfo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/fuzz/src/bin/certreqinfo.rs -------------------------------------------------------------------------------- /x509-cert/src/anchor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/anchor.rs -------------------------------------------------------------------------------- /x509-cert/src/attr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/attr.rs -------------------------------------------------------------------------------- /x509-cert/src/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/builder.rs -------------------------------------------------------------------------------- /x509-cert/src/builder/profile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/builder/profile.rs -------------------------------------------------------------------------------- /x509-cert/src/builder/profile/cabf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/builder/profile/cabf.rs -------------------------------------------------------------------------------- /x509-cert/src/builder/profile/cabf/tls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/builder/profile/cabf/tls.rs -------------------------------------------------------------------------------- /x509-cert/src/builder/profile/devid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/builder/profile/devid.rs -------------------------------------------------------------------------------- /x509-cert/src/certificate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/certificate.rs -------------------------------------------------------------------------------- /x509-cert/src/crl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/crl.rs -------------------------------------------------------------------------------- /x509-cert/src/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/ext.rs -------------------------------------------------------------------------------- /x509-cert/src/ext/pkix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/ext/pkix.rs -------------------------------------------------------------------------------- /x509-cert/src/ext/pkix/access.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/ext/pkix/access.rs -------------------------------------------------------------------------------- /x509-cert/src/ext/pkix/authkeyid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/ext/pkix/authkeyid.rs -------------------------------------------------------------------------------- /x509-cert/src/ext/pkix/certpolicy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/ext/pkix/certpolicy.rs -------------------------------------------------------------------------------- /x509-cert/src/ext/pkix/constraints.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/ext/pkix/constraints.rs -------------------------------------------------------------------------------- /x509-cert/src/ext/pkix/constraints/basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/ext/pkix/constraints/basic.rs -------------------------------------------------------------------------------- /x509-cert/src/ext/pkix/constraints/name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/ext/pkix/constraints/name.rs -------------------------------------------------------------------------------- /x509-cert/src/ext/pkix/constraints/policy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/ext/pkix/constraints/policy.rs -------------------------------------------------------------------------------- /x509-cert/src/ext/pkix/crl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/ext/pkix/crl.rs -------------------------------------------------------------------------------- /x509-cert/src/ext/pkix/crl/dp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/ext/pkix/crl/dp.rs -------------------------------------------------------------------------------- /x509-cert/src/ext/pkix/keyusage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/ext/pkix/keyusage.rs -------------------------------------------------------------------------------- /x509-cert/src/ext/pkix/name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/ext/pkix/name.rs -------------------------------------------------------------------------------- /x509-cert/src/ext/pkix/name/dirstr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/ext/pkix/name/dirstr.rs -------------------------------------------------------------------------------- /x509-cert/src/ext/pkix/name/dp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/ext/pkix/name/dp.rs -------------------------------------------------------------------------------- /x509-cert/src/ext/pkix/name/ediparty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/ext/pkix/name/ediparty.rs -------------------------------------------------------------------------------- /x509-cert/src/ext/pkix/name/general.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/ext/pkix/name/general.rs -------------------------------------------------------------------------------- /x509-cert/src/ext/pkix/name/hardware.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/ext/pkix/name/hardware.rs -------------------------------------------------------------------------------- /x509-cert/src/ext/pkix/name/other.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/ext/pkix/name/other.rs -------------------------------------------------------------------------------- /x509-cert/src/ext/pkix/policymap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/ext/pkix/policymap.rs -------------------------------------------------------------------------------- /x509-cert/src/ext/pkix/sct.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/ext/pkix/sct.rs -------------------------------------------------------------------------------- /x509-cert/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/lib.rs -------------------------------------------------------------------------------- /x509-cert/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/macros.rs -------------------------------------------------------------------------------- /x509-cert/src/name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/name.rs -------------------------------------------------------------------------------- /x509-cert/src/request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/request.rs -------------------------------------------------------------------------------- /x509-cert/src/request/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/request/builder.rs -------------------------------------------------------------------------------- /x509-cert/src/serial_number.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/serial_number.rs -------------------------------------------------------------------------------- /x509-cert/src/time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/src/time.rs -------------------------------------------------------------------------------- /x509-cert/test-support/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /x509-cert/test-support/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/test-support/Cargo.lock -------------------------------------------------------------------------------- /x509-cert/test-support/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/test-support/Cargo.toml -------------------------------------------------------------------------------- /x509-cert/test-support/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/test-support/src/lib.rs -------------------------------------------------------------------------------- /x509-cert/test-support/src/openssl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/test-support/src/openssl.rs -------------------------------------------------------------------------------- /x509-cert/test-support/src/zlint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/test-support/src/zlint.rs -------------------------------------------------------------------------------- /x509-cert/tests/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/builder.rs -------------------------------------------------------------------------------- /x509-cert/tests/builder_crl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/builder_crl.rs -------------------------------------------------------------------------------- /x509-cert/tests/certificate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/certificate.rs -------------------------------------------------------------------------------- /x509-cert/tests/certreq.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/certreq.rs -------------------------------------------------------------------------------- /x509-cert/tests/crl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/crl.rs -------------------------------------------------------------------------------- /x509-cert/tests/examples/026EDA6FA1EDFA8C253936C75B5EEBD954BFF452.fake.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/026EDA6FA1EDFA8C253936C75B5EEBD954BFF452.fake.der -------------------------------------------------------------------------------- /x509-cert/tests/examples/0954e2343dd5efe0a7f0967d69caf33e5f893720.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/0954e2343dd5efe0a7f0967d69caf33e5f893720.der -------------------------------------------------------------------------------- /x509-cert/tests/examples/0fcc78fbbca9f32b08b19b032b84f2c86a128f35.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/0fcc78fbbca9f32b08b19b032b84f2c86a128f35.der -------------------------------------------------------------------------------- /x509-cert/tests/examples/15b05c4865410c6b3ff76a4e8f3d87276756bd0c.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/15b05c4865410c6b3ff76a4e8f3d87276756bd0c.der -------------------------------------------------------------------------------- /x509-cert/tests/examples/16ee54e48c76eaa1052e09010d8faefee95e5ebb.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/16ee54e48c76eaa1052e09010d8faefee95e5ebb.der -------------------------------------------------------------------------------- /x509-cert/tests/examples/2049a5b28f104b2c6e1a08546f9cfc0353d6fd30.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/2049a5b28f104b2c6e1a08546f9cfc0353d6fd30.der -------------------------------------------------------------------------------- /x509-cert/tests/examples/21723e7a0fb61a0bd4a29879b82a02b2fb4ad096.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/21723e7a0fb61a0bd4a29879b82a02b2fb4ad096.der -------------------------------------------------------------------------------- /x509-cert/tests/examples/28903a635b5280fae6774c0b6da7d6baa64af2e8.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/28903a635b5280fae6774c0b6da7d6baa64af2e8.der -------------------------------------------------------------------------------- /x509-cert/tests/examples/342cd9d3062da48c346965297f081ebc2ef68fdc.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/342cd9d3062da48c346965297f081ebc2ef68fdc.der -------------------------------------------------------------------------------- /x509-cert/tests/examples/GoodCACRL.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/GoodCACRL.crl -------------------------------------------------------------------------------- /x509-cert/tests/examples/GoodCACert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/GoodCACert.crt -------------------------------------------------------------------------------- /x509-cert/tests/examples/amazon.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/amazon.der -------------------------------------------------------------------------------- /x509-cert/tests/examples/amazon.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/amazon.pem -------------------------------------------------------------------------------- /x509-cert/tests/examples/crates.io-chain.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/crates.io-chain.pem -------------------------------------------------------------------------------- /x509-cert/tests/examples/eca.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/eca.der -------------------------------------------------------------------------------- /x509-cert/tests/examples/eca_policies.ta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/eca_policies.ta -------------------------------------------------------------------------------- /x509-cert/tests/examples/entrust.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/entrust.der -------------------------------------------------------------------------------- /x509-cert/tests/examples/entrust_dnConstraint.ta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/entrust_dnConstraint.ta -------------------------------------------------------------------------------- /x509-cert/tests/examples/exostar.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/exostar.der -------------------------------------------------------------------------------- /x509-cert/tests/examples/exostar_policyFlags.ta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/exostar_policyFlags.ta -------------------------------------------------------------------------------- /x509-cert/tests/examples/lenovo_pk.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/lenovo_pk.pem -------------------------------------------------------------------------------- /x509-cert/tests/examples/p256-priv.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/p256-priv.der -------------------------------------------------------------------------------- /x509-cert/tests/examples/p256-pub.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/p256-pub.der -------------------------------------------------------------------------------- /x509-cert/tests/examples/qualcomm.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/qualcomm.pem -------------------------------------------------------------------------------- /x509-cert/tests/examples/raytheon.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/raytheon.der -------------------------------------------------------------------------------- /x509-cert/tests/examples/raytheon_pathLenConstraint.ta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/raytheon_pathLenConstraint.ta -------------------------------------------------------------------------------- /x509-cert/tests/examples/rsa2048-crt.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/rsa2048-crt.der -------------------------------------------------------------------------------- /x509-cert/tests/examples/rsa2048-crt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/rsa2048-crt.pem -------------------------------------------------------------------------------- /x509-cert/tests/examples/rsa2048-csr.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/rsa2048-csr.der -------------------------------------------------------------------------------- /x509-cert/tests/examples/rsa2048-csr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/rsa2048-csr.pem -------------------------------------------------------------------------------- /x509-cert/tests/examples/rsa2048-priv.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/rsa2048-priv.der -------------------------------------------------------------------------------- /x509-cert/tests/examples/rsa2048-prv.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/rsa2048-prv.der -------------------------------------------------------------------------------- /x509-cert/tests/examples/rsa2048-prv.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/rsa2048-prv.pem -------------------------------------------------------------------------------- /x509-cert/tests/examples/rsa2048-pub.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/rsa2048-pub.der -------------------------------------------------------------------------------- /x509-cert/tests/examples/tscpbcasha256.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/tscpbcasha256.crl -------------------------------------------------------------------------------- /x509-cert/tests/examples/windows_bmpstring.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/examples/windows_bmpstring.pem -------------------------------------------------------------------------------- /x509-cert/tests/general_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/general_name.rs -------------------------------------------------------------------------------- /x509-cert/tests/name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/name.rs -------------------------------------------------------------------------------- /x509-cert/tests/pkix_extensions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/pkix_extensions.rs -------------------------------------------------------------------------------- /x509-cert/tests/trust_anchor_format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/trust_anchor_format.rs -------------------------------------------------------------------------------- /x509-cert/tests/validity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-cert/tests/validity.rs -------------------------------------------------------------------------------- /x509-ocsp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/CHANGELOG.md -------------------------------------------------------------------------------- /x509-ocsp/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/Cargo.toml -------------------------------------------------------------------------------- /x509-ocsp/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/LICENSE-APACHE -------------------------------------------------------------------------------- /x509-ocsp/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/LICENSE-MIT -------------------------------------------------------------------------------- /x509-ocsp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/README.md -------------------------------------------------------------------------------- /x509-ocsp/src/basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/src/basic.rs -------------------------------------------------------------------------------- /x509-ocsp/src/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/src/builder.rs -------------------------------------------------------------------------------- /x509-ocsp/src/builder/request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/src/builder/request.rs -------------------------------------------------------------------------------- /x509-ocsp/src/builder/response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/src/builder/response.rs -------------------------------------------------------------------------------- /x509-ocsp/src/cert_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/src/cert_id.rs -------------------------------------------------------------------------------- /x509-ocsp/src/cert_status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/src/cert_status.rs -------------------------------------------------------------------------------- /x509-ocsp/src/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/src/ext.rs -------------------------------------------------------------------------------- /x509-ocsp/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/src/lib.rs -------------------------------------------------------------------------------- /x509-ocsp/src/request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/src/request.rs -------------------------------------------------------------------------------- /x509-ocsp/src/responder_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/src/responder_id.rs -------------------------------------------------------------------------------- /x509-ocsp/src/response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/src/response.rs -------------------------------------------------------------------------------- /x509-ocsp/src/time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/src/time.rs -------------------------------------------------------------------------------- /x509-ocsp/tests/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/builder.rs -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/DODEMAILCA_63-resp.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/DODEMAILCA_63-resp.der -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/ocsp-by-key-res.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/ocsp-by-key-res.der -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/ocsp-dtm-no-chain-res.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/ocsp-dtm-no-chain-res.der -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/ocsp-internal-error.der: -------------------------------------------------------------------------------- 1 | 0 2 |  -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/ocsp-malformed.der: -------------------------------------------------------------------------------- 1 | 0 2 |  -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/ocsp-multiple-exts-clean-req.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/ocsp-multiple-exts-clean-req.der -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/ocsp-multiple-exts-res.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/ocsp-multiple-exts-res.der -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/ocsp-multiple-requests-nonce-req.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/ocsp-multiple-requests-nonce-req.der -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/ocsp-multiple-requests-req.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/ocsp-multiple-requests-req.der -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/ocsp-multiple-responses-res.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/ocsp-multiple-responses-res.der -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/ocsp-sig-required.der: -------------------------------------------------------------------------------- 1 | 0 2 |  -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/ocsp-signed-req.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/ocsp-signed-req.der -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/ocsp-try-later.der: -------------------------------------------------------------------------------- 1 | 0 2 |  -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/ocsp-unauthorized.der: -------------------------------------------------------------------------------- 1 | 0 2 |  -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/rsa-2048-sha256-ca-crl.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/rsa-2048-sha256-ca-crl.der -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/rsa-2048-sha256-ca-key.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/rsa-2048-sha256-ca-key.der -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/rsa-2048-sha256-ca.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/rsa-2048-sha256-ca.der -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/rsa-2048-sha256-crt-key.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/rsa-2048-sha256-crt-key.der -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/rsa-2048-sha256-crt.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/rsa-2048-sha256-crt.der -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/rsa-2048-sha256-ocsp-crt-key.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/rsa-2048-sha256-ocsp-crt-key.der -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/rsa-2048-sha256-ocsp-crt.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/rsa-2048-sha256-ocsp-crt.der -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/rsa-2048-sha256-revoked-ocsp-res.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/rsa-2048-sha256-revoked-ocsp-res.der -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/sha1-certid-ocsp-req.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/sha1-certid-ocsp-req.der -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/sha1-certid-ocsp-res.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/sha1-certid-ocsp-res.der -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/sha224-certid-ocsp-req.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/sha224-certid-ocsp-req.der -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/sha256-certid-ocsp-req.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/sha256-certid-ocsp-req.der -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/sha256-certid-ocsp-res.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/sha256-certid-ocsp-res.der -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/sha384-certid-ocsp-req.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/sha384-certid-ocsp-req.der -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/sha512-certid-ocsp-req.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/sha512-certid-ocsp-req.der -------------------------------------------------------------------------------- /x509-ocsp/tests/examples/sha512-certid-ocsp-res.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/examples/sha512-certid-ocsp-res.der -------------------------------------------------------------------------------- /x509-ocsp/tests/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/ext.rs -------------------------------------------------------------------------------- /x509-ocsp/tests/ocsp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/ocsp.rs -------------------------------------------------------------------------------- /x509-ocsp/tests/requests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/requests.rs -------------------------------------------------------------------------------- /x509-ocsp/tests/responses.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-ocsp/tests/responses.rs -------------------------------------------------------------------------------- /x509-tsp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-tsp/CHANGELOG.md -------------------------------------------------------------------------------- /x509-tsp/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-tsp/Cargo.toml -------------------------------------------------------------------------------- /x509-tsp/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-tsp/LICENSE-APACHE -------------------------------------------------------------------------------- /x509-tsp/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-tsp/LICENSE-MIT -------------------------------------------------------------------------------- /x509-tsp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-tsp/README.md -------------------------------------------------------------------------------- /x509-tsp/src/generalized_time_nanos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-tsp/src/generalized_time_nanos.rs -------------------------------------------------------------------------------- /x509-tsp/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RustCrypto/formats/HEAD/x509-tsp/src/lib.rs --------------------------------------------------------------------------------