├── cmd ├── bltest │ └── tests │ │ ├── aes_gcm │ │ ├── aad0 │ │ ├── aad1 │ │ ├── aad12 │ │ ├── aad13 │ │ ├── aad14 │ │ ├── aad2 │ │ ├── aad6 │ │ ├── aad7 │ │ ├── aad8 │ │ ├── plaintext0 │ │ ├── plaintext12 │ │ ├── plaintext6 │ │ ├── iv0 │ │ ├── iv1 │ │ ├── iv12 │ │ ├── iv13 │ │ ├── iv6 │ │ ├── iv7 │ │ ├── numtests │ │ ├── key0 │ │ ├── key1 │ │ ├── key6 │ │ ├── key7 │ │ ├── plaintext1 │ │ ├── plaintext13 │ │ ├── plaintext7 │ │ ├── key12 │ │ ├── key13 │ │ ├── ciphertext0 │ │ ├── ciphertext12 │ │ ├── ciphertext6 │ │ ├── ciphertext1 │ │ ├── ciphertext13 │ │ ├── ciphertext7 │ │ ├── aad3 │ │ ├── aad4 │ │ ├── aad5 │ │ ├── aad9 │ │ ├── iv10 │ │ ├── iv11 │ │ ├── iv14 │ │ ├── iv15 │ │ ├── iv16 │ │ ├── iv17 │ │ ├── iv2 │ │ ├── iv3 │ │ ├── iv4 │ │ ├── iv5 │ │ ├── iv8 │ │ ├── iv9 │ │ ├── key2 │ │ ├── key3 │ │ ├── key4 │ │ ├── key5 │ │ ├── key8 │ │ ├── key9 │ │ ├── aad10 │ │ ├── aad11 │ │ ├── aad15 │ │ ├── aad16 │ │ ├── aad17 │ │ ├── key10 │ │ ├── key11 │ │ ├── key14 │ │ ├── key15 │ │ ├── key16 │ │ ├── key17 │ │ ├── plaintext10 │ │ ├── plaintext11 │ │ ├── plaintext14 │ │ ├── plaintext15 │ │ ├── plaintext16 │ │ ├── plaintext17 │ │ ├── plaintext2 │ │ ├── plaintext3 │ │ ├── plaintext4 │ │ ├── plaintext5 │ │ ├── plaintext8 │ │ ├── plaintext9 │ │ ├── ciphertext10 │ │ ├── ciphertext11 │ │ ├── ciphertext15 │ │ ├── ciphertext16 │ │ ├── ciphertext17 │ │ ├── ciphertext3 │ │ ├── ciphertext4 │ │ ├── ciphertext5 │ │ ├── ciphertext9 │ │ ├── ciphertext14 │ │ ├── ciphertext2 │ │ ├── ciphertext8 │ │ ├── test0.txt │ │ ├── test6.txt │ │ └── test12.txt │ │ ├── dsa │ │ ├── numtests │ │ ├── keyseed0 │ │ ├── keyseed1 │ │ ├── keyseed2 │ │ ├── keyseed3 │ │ ├── keyseed4 │ │ ├── keyseed5 │ │ ├── sigseed0 │ │ ├── sigseed1 │ │ ├── sigseed2 │ │ ├── sigseed3 │ │ ├── sigseed4 │ │ ├── sigseed5 │ │ ├── plaintext0 │ │ ├── plaintext1 │ │ ├── plaintext11 │ │ ├── plaintext16 │ │ ├── plaintext6 │ │ ├── keyseed10 │ │ ├── keyseed6 │ │ ├── keyseed7 │ │ ├── keyseed8 │ │ ├── keyseed9 │ │ ├── plaintext12 │ │ ├── plaintext17 │ │ ├── plaintext2 │ │ ├── plaintext7 │ │ ├── sigseed10 │ │ ├── sigseed6 │ │ ├── sigseed7 │ │ ├── sigseed8 │ │ ├── sigseed9 │ │ ├── keyseed11 │ │ ├── keyseed12 │ │ ├── keyseed13 │ │ ├── keyseed14 │ │ ├── keyseed15 │ │ ├── keyseed16 │ │ ├── keyseed17 │ │ ├── keyseed18 │ │ ├── keyseed19 │ │ ├── keyseed20 │ │ ├── plaintext13 │ │ ├── plaintext18 │ │ ├── plaintext3 │ │ ├── plaintext8 │ │ ├── sigseed11 │ │ ├── sigseed12 │ │ ├── sigseed13 │ │ ├── sigseed14 │ │ ├── sigseed15 │ │ ├── sigseed16 │ │ ├── sigseed17 │ │ ├── sigseed18 │ │ ├── sigseed19 │ │ ├── sigseed20 │ │ ├── ciphertext0 │ │ ├── ciphertext1 │ │ ├── ciphertext2 │ │ ├── ciphertext3 │ │ ├── ciphertext4 │ │ ├── ciphertext5 │ │ ├── plaintext14 │ │ ├── plaintext19 │ │ ├── plaintext4 │ │ ├── plaintext9 │ │ ├── ciphertext10 │ │ ├── ciphertext6 │ │ ├── ciphertext7 │ │ ├── ciphertext8 │ │ ├── ciphertext9 │ │ ├── ciphertext11 │ │ ├── ciphertext12 │ │ ├── ciphertext13 │ │ ├── ciphertext14 │ │ ├── ciphertext15 │ │ ├── ciphertext16 │ │ ├── ciphertext17 │ │ ├── ciphertext18 │ │ ├── ciphertext19 │ │ ├── ciphertext20 │ │ ├── plaintext10 │ │ ├── plaintext15 │ │ ├── plaintext20 │ │ ├── plaintext5 │ │ ├── pqg0 │ │ ├── key0 │ │ ├── pqg1 │ │ ├── pqg2 │ │ ├── pqg3 │ │ ├── pqg4 │ │ └── pqg5 │ │ ├── ecdsa │ │ ├── numtests │ │ ├── plaintext0 │ │ ├── plaintext1 │ │ ├── plaintext10 │ │ ├── plaintext11 │ │ ├── plaintext12 │ │ ├── plaintext13 │ │ ├── plaintext14 │ │ ├── plaintext15 │ │ ├── plaintext16 │ │ ├── plaintext17 │ │ ├── plaintext18 │ │ ├── plaintext19 │ │ ├── plaintext2 │ │ ├── plaintext20 │ │ ├── plaintext3 │ │ ├── plaintext4 │ │ ├── plaintext5 │ │ ├── plaintext6 │ │ ├── plaintext7 │ │ ├── plaintext8 │ │ ├── plaintext9 │ │ ├── sigseed0 │ │ ├── sigseed1 │ │ ├── sigseed2 │ │ ├── sigseed3 │ │ ├── sigseed4 │ │ ├── sigseed5 │ │ ├── sigseed6 │ │ ├── sigseed7 │ │ ├── sigseed10 │ │ ├── sigseed11 │ │ ├── sigseed8 │ │ ├── sigseed9 │ │ ├── sigseed12 │ │ ├── sigseed13 │ │ ├── sigseed14 │ │ ├── ciphertext0 │ │ ├── ciphertext1 │ │ ├── ciphertext2 │ │ ├── ciphertext3 │ │ ├── ciphertext4 │ │ ├── ciphertext5 │ │ ├── sigseed15 │ │ ├── ciphertext6 │ │ ├── ciphertext7 │ │ ├── sigseed16 │ │ ├── sigseed17 │ │ ├── ciphertext8 │ │ ├── ciphertext9 │ │ ├── ciphertext10 │ │ ├── ciphertext11 │ │ ├── sigseed20 │ │ ├── ciphertext12 │ │ ├── ciphertext13 │ │ ├── ciphertext14 │ │ ├── sigseed18 │ │ ├── sigseed19 │ │ ├── key0 │ │ ├── key1 │ │ ├── key2 │ │ ├── key3 │ │ ├── key4 │ │ ├── key5 │ │ ├── key6 │ │ ├── key7 │ │ ├── ciphertext15 │ │ ├── key8 │ │ ├── key9 │ │ ├── ciphertext16 │ │ ├── ciphertext17 │ │ ├── key10 │ │ ├── key11 │ │ ├── key12 │ │ ├── key13 │ │ ├── key14 │ │ ├── ciphertext20 │ │ ├── ciphertext18 │ │ ├── ciphertext19 │ │ ├── key15 │ │ ├── key16 │ │ ├── key17 │ │ ├── key20 │ │ ├── key18 │ │ ├── key19 │ │ └── README │ │ ├── md2 │ │ ├── numtests │ │ ├── plaintext0 │ │ └── ciphertext0 │ │ ├── md5 │ │ ├── numtests │ │ ├── ciphertext0 │ │ └── plaintext0 │ │ ├── rc4 │ │ ├── key0 │ │ ├── key1 │ │ ├── numtests │ │ ├── plaintext0 │ │ ├── ciphertext0 │ │ ├── plaintext1 │ │ └── ciphertext1 │ │ ├── rsa │ │ ├── numtests │ │ ├── plaintext0 │ │ ├── ciphertext0 │ │ └── key0 │ │ ├── sha1 │ │ ├── numtests │ │ ├── ciphertext0 │ │ └── plaintext0 │ │ ├── sha224 │ │ ├── numtests │ │ ├── plaintext0 │ │ ├── ciphertext0 │ │ ├── ciphertext1 │ │ └── plaintext1 │ │ ├── sha256 │ │ ├── numtests │ │ ├── plaintext0 │ │ ├── ciphertext0 │ │ ├── ciphertext1 │ │ └── plaintext1 │ │ ├── sha384 │ │ ├── numtests │ │ ├── plaintext0 │ │ ├── ciphertext0 │ │ ├── ciphertext1 │ │ └── plaintext1 │ │ ├── sha512 │ │ ├── numtests │ │ ├── plaintext0 │ │ ├── ciphertext0 │ │ ├── ciphertext1 │ │ └── plaintext1 │ │ ├── aes_cbc │ │ ├── numtests │ │ ├── iv0 │ │ ├── key0 │ │ ├── plaintext0 │ │ └── ciphertext0 │ │ ├── aes_ctr │ │ ├── numtests │ │ ├── iv0 │ │ ├── iv1 │ │ ├── iv2 │ │ ├── key0 │ │ ├── key1 │ │ ├── key2 │ │ ├── plaintext0 │ │ ├── plaintext1 │ │ ├── plaintext2 │ │ ├── ciphertext0 │ │ ├── ciphertext1 │ │ ├── ciphertext2 │ │ └── mktst.sh │ │ ├── aes_cts │ │ ├── numtests │ │ ├── key0 │ │ ├── key1 │ │ ├── key2 │ │ ├── key3 │ │ ├── key4 │ │ ├── key5 │ │ ├── plaintext0 │ │ ├── ciphertext0 │ │ ├── plaintext1 │ │ ├── plaintext2 │ │ ├── plaintext3 │ │ ├── plaintext4 │ │ ├── ciphertext1 │ │ ├── ciphertext2 │ │ ├── iv0 │ │ ├── iv1 │ │ ├── iv2 │ │ ├── iv3 │ │ ├── iv4 │ │ ├── iv5 │ │ ├── plaintext5 │ │ ├── ciphertext3 │ │ ├── ciphertext4 │ │ ├── ciphertext5 │ │ ├── aes_cts_0.txt │ │ ├── mktst.sh │ │ ├── aes_cts_1.txt │ │ └── aes_cts_2.txt │ │ ├── aes_ecb │ │ ├── numtests │ │ ├── key0 │ │ ├── plaintext0 │ │ └── ciphertext0 │ │ ├── des3_cbc │ │ ├── iv0 │ │ ├── numtests │ │ ├── plaintext0 │ │ ├── ciphertext0 │ │ └── key0 │ │ ├── des3_ecb │ │ ├── numtests │ │ ├── plaintext0 │ │ ├── ciphertext0 │ │ └── key0 │ │ ├── des_cbc │ │ ├── iv0 │ │ ├── key0 │ │ ├── numtests │ │ ├── plaintext0 │ │ └── ciphertext0 │ │ ├── des_ecb │ │ ├── key0 │ │ ├── numtests │ │ ├── plaintext0 │ │ └── ciphertext0 │ │ ├── rc2_cbc │ │ ├── iv0 │ │ ├── key0 │ │ ├── numtests │ │ ├── plaintext0 │ │ └── ciphertext0 │ │ ├── rc2_ecb │ │ ├── key0 │ │ ├── numtests │ │ ├── plaintext0 │ │ └── ciphertext0 │ │ ├── rc5_cbc │ │ ├── iv0 │ │ ├── key0 │ │ ├── numtests │ │ ├── plaintext0 │ │ ├── ciphertext0 │ │ └── params0 │ │ ├── rc5_ecb │ │ ├── key0 │ │ ├── numtests │ │ ├── plaintext0 │ │ ├── ciphertext0 │ │ └── params0 │ │ ├── seed_cbc │ │ ├── numtests │ │ ├── iv0 │ │ ├── key0 │ │ ├── plaintext0 │ │ └── ciphertext0 │ │ ├── seed_ecb │ │ ├── numtests │ │ ├── iv0 │ │ ├── key0 │ │ ├── plaintext0 │ │ └── ciphertext0 │ │ ├── camellia_cbc │ │ ├── numtests │ │ ├── iv0 │ │ ├── key0 │ │ ├── key1 │ │ ├── plaintext0 │ │ ├── ciphertext0 │ │ ├── ciphertext1 │ │ ├── ciphertext2 │ │ └── key2 │ │ └── camellia_ecb │ │ ├── numtests │ │ ├── key0 │ │ ├── key1 │ │ ├── plaintext0 │ │ ├── ciphertext0 │ │ ├── ciphertext1 │ │ ├── ciphertext2 │ │ └── key2 ├── samples │ ├── cert0 │ ├── cert1 │ ├── cert2 │ ├── pkcs7.ber │ ├── x509v3.der │ ├── pkcs7bday.ber │ ├── pkcs7cnet.ber │ └── pkcs7news.ber ├── crlutil │ └── crlgen_lex_fix.sed ├── pk11util │ └── scripts │ │ ├── pLabel1 │ │ ├── mechanisms │ │ └── pMechanisms ├── smimetools │ ├── rules.mk │ └── manifest.mn ├── libpkix │ ├── pkixrules.mk │ ├── config.mk │ ├── pkix_pl │ │ └── manifest.mn │ ├── manifest.mn │ └── pkix │ │ └── manifest.mn ├── modutil │ ├── README │ └── installparse.h ├── p7env │ └── manifest.mn ├── p7sign │ └── manifest.mn ├── ocspresp │ └── manifest.mn ├── p7verify │ └── manifest.mn ├── pk1sign │ └── manifest.mn ├── p7content │ └── manifest.mn ├── listsuites │ └── manifest.mn ├── pk11mode │ └── manifest.mn ├── pkix-errcodes │ └── manifest.mn ├── makepqg │ ├── testit.ksh │ └── manifest.mn ├── multinit │ └── manifest.mn ├── pk11gcmtest │ └── manifest.mn ├── lib │ ├── config.mk │ └── ffs.c ├── crmftest │ └── config.mk ├── crmf-cgi │ └── config.mk ├── fipstest │ └── manifest.mn └── rsapoptst │ └── manifest.mn ├── doc ├── html │ └── .hgignore ├── .hgignore └── README ├── tests ├── libpkix │ ├── pkix_tests │ │ ├── certsel │ │ │ └── keyUsage │ │ └── top │ │ │ ├── key3.db │ │ │ ├── cert8.db │ │ │ ├── secmod.db │ │ │ ├── goodcert.crt │ │ │ ├── anchorcert.crt │ │ │ ├── revokedcert.crt │ │ │ ├── rev_data │ │ │ └── crlchecker │ │ │ │ ├── sci.crl │ │ │ │ ├── chem.crl │ │ │ │ ├── phys.crl │ │ │ │ ├── prof.crl │ │ │ │ ├── test.crl │ │ │ │ ├── phy2prof.crt │ │ │ │ ├── sci2chem.crt │ │ │ │ ├── sci2phy.crt │ │ │ │ ├── sci2sci.crt │ │ │ │ ├── chem2prof.crt │ │ │ │ └── prof2test.crt │ │ │ └── build_data │ │ │ ├── test1 │ │ │ ├── jes2greg.crt │ │ │ ├── jes2jes.crt │ │ │ ├── jes2labs.crt │ │ │ ├── greg2yassir.crt │ │ │ ├── labs2yassir.crt │ │ │ ├── yassir2hanfei.crt │ │ │ └── yassir2richard.crt │ │ │ ├── test2 │ │ │ ├── jes2greg.crt │ │ │ ├── jes2jes.crt │ │ │ ├── jes2labs.crt │ │ │ ├── labs2yassir.crt │ │ │ ├── nelson2yassir.crt │ │ │ ├── yassir2hanfei.crt │ │ │ └── yassir2richard.crt │ │ │ ├── test3 │ │ │ ├── jes2greg.crt │ │ │ ├── jes2jes.crt │ │ │ ├── jes2labs.crt │ │ │ ├── labs2yassir.crt │ │ │ ├── nelson2yassir.crt │ │ │ └── yassir2hanfei.crt │ │ │ ├── backtracking │ │ │ └── signature │ │ │ │ ├── greg.crl │ │ │ │ ├── jes.crl │ │ │ │ ├── labs.crl │ │ │ │ ├── jes2jes.crt │ │ │ │ ├── yassir.crl │ │ │ │ ├── jes2greg.crt │ │ │ │ ├── jes2labs.crt │ │ │ │ ├── labs2yassir.crt │ │ │ │ ├── yassir2hanfei.crt │ │ │ │ └── greg2yassir_badsig.crt │ │ │ ├── multi_path │ │ │ └── signature │ │ │ │ ├── fail │ │ │ │ ├── greg.crl │ │ │ │ ├── jes.crl │ │ │ │ ├── labs.crl │ │ │ │ ├── yassir.crl │ │ │ │ ├── jes2greg.crt │ │ │ │ ├── jes2jes.crt │ │ │ │ ├── jes2labs.crt │ │ │ │ ├── greg2yassir.crt │ │ │ │ ├── labs2yassir.crt │ │ │ │ └── yassir2hanfei.crt │ │ │ │ └── pass │ │ │ │ ├── greg.crl │ │ │ │ ├── jes.crl │ │ │ │ ├── labs.crl │ │ │ │ ├── yassir.crl │ │ │ │ ├── jes2greg.crt │ │ │ │ ├── jes2jes.crt │ │ │ │ ├── jes2labs.crt │ │ │ │ ├── greg2yassir.crt │ │ │ │ ├── labs2yassir.crt │ │ │ │ └── yassir2hanfei.crt │ │ │ └── single_path │ │ │ └── signature │ │ │ ├── fail │ │ │ ├── jes.crl │ │ │ ├── greg.crl │ │ │ ├── jes2greg.crt │ │ │ ├── jes2jes.crt │ │ │ ├── yassir.crl │ │ │ ├── yassir2hanfei.crt │ │ │ └── greg2yassir_badsig.crt │ │ │ └── pass │ │ │ ├── jes.crl │ │ │ ├── greg.crl │ │ │ ├── jes2greg.crt │ │ │ ├── jes2jes.crt │ │ │ ├── yassir.crl │ │ │ ├── greg2yassir.crt │ │ │ └── yassir2hanfei.crt │ ├── certs │ │ ├── hy2hc-bc │ │ ├── hy2hy-bc0 │ │ ├── nss2alice │ │ ├── sun2sun │ │ ├── OCSPCA1.p12 │ │ ├── OCSPCA2.p12 │ │ ├── OCSPCA3.p12 │ │ ├── anchor2dsa │ │ ├── crldiff.crl │ │ ├── crlgood.crl │ │ ├── yassir2bcn │ │ ├── GoodCACert.crt │ │ ├── OCSPCA1.cert │ │ ├── OCSPCA2.cert │ │ ├── OCSPCA3.cert │ │ ├── OCSPEE11.cert │ │ ├── OCSPEE12.cert │ │ ├── OCSPEE13.cert │ │ ├── OCSPEE14.cert │ │ ├── OCSPEE15.cert │ │ ├── OCSPEE21.cert │ │ ├── OCSPEE22.cert │ │ ├── OCSPEE23.cert │ │ ├── OCSPEE31.cert │ │ ├── OCSPEE32.cert │ │ ├── OCSPEE33.cert │ │ ├── OCSPRoot.cert │ │ ├── OCSPRoot.p12 │ │ ├── PayPalEE.cert │ │ ├── PayPalICA.cert │ │ ├── TestCA.ca.cert │ │ ├── yassir2yassir │ │ ├── TestUser50.cert │ │ ├── TestUser51.cert │ │ ├── issuer-none.crl │ │ ├── noExtensionsCert │ │ ├── PayPalRootCA.cert │ │ ├── hanfeiyu2hanfeiyu │ │ ├── issuer-hanfei.crl │ │ ├── BrAirWaysBadSig.cert │ │ ├── extKeyUsage │ │ │ ├── noEKUCert │ │ │ ├── multiEKUCert │ │ │ └── codeSigningEKUCert │ │ ├── publicKey │ │ │ ├── labs2yassir │ │ │ ├── yassir2labs │ │ │ ├── dsaWithParams │ │ │ └── dsaWithoutParams │ │ ├── keyUsage │ │ │ ├── noKeyUsagesCert │ │ │ ├── decipherOnlyCert │ │ │ ├── encipherOnlyCert │ │ │ └── multiKeyUsagesCert │ │ ├── generalName │ │ │ ├── altNameDnCert │ │ │ ├── altNameDnsCert │ │ │ ├── altNameEdiCert │ │ │ ├── altNameIpCert │ │ │ ├── altNameOidCert │ │ │ ├── altNameUriCert │ │ │ ├── altNameNoneCert │ │ │ ├── altNameOtherCert │ │ │ ├── altNameRfc822Cert │ │ │ ├── altNameX400Cert │ │ │ ├── altNameDnCert_diff │ │ │ ├── altNameDnsCert_diff │ │ │ ├── altNameEdiCert_diff │ │ │ ├── altNameIpCert_diff │ │ │ ├── altNameOidCert_diff │ │ │ ├── altNameUriCert_diff │ │ │ ├── altNameOtherCert_diff │ │ │ ├── altNameRfc822Cert_diff │ │ │ ├── altNameRfc822DnsCert │ │ │ └── altNameX400Cert_diff │ │ ├── keyIdentifier │ │ │ ├── authKeyIDCert │ │ │ └── subjKeyIDCert │ │ ├── CertificatePoliciesCritical.crt │ │ ├── TrustAnchorRootCertificate.crt │ │ └── ValidCertificatePathTest1EE.crt │ ├── sample_apps │ │ ├── cert8.db │ │ ├── key3.db │ │ └── secmod.db │ ├── pkix_pl_tests │ │ ├── module │ │ │ ├── cert8.db │ │ │ ├── key3.db │ │ │ ├── secmod.db │ │ │ └── rev_data │ │ │ │ ├── local │ │ │ │ ├── crldiff.crl │ │ │ │ ├── crlgood.crl │ │ │ │ ├── issuer-none.crl │ │ │ │ └── issuer-hanfei.crl │ │ │ │ ├── test_eku_all.crt │ │ │ │ ├── test_eku_clientauth.crt │ │ │ │ ├── test_eku_clientauthEE.crt │ │ │ │ ├── test_eku_allbutcodesigningEE.crt │ │ │ │ └── test_eku_codesigning_clientauth.crt │ │ └── pki │ │ │ └── rev_data │ │ │ └── local │ │ │ ├── crldiff.crl │ │ │ ├── crlgood.crl │ │ │ ├── issuer-hanfei.crl │ │ │ ├── issuer-none.crl │ │ │ └── README │ ├── cert_trust.map │ └── vfychain_test.lst ├── ssl │ ├── sslreq.dat │ └── sslreq.txt ├── iopr │ └── server_scr │ │ └── sslreq.dat ├── memleak │ └── sslreq.dat ├── doc │ └── clean.gif ├── pkcs11 │ └── netscape │ │ ├── trivial │ │ ├── .cvsignore │ │ └── acconfig.h │ │ └── suites │ │ ├── security │ │ ├── ssl │ │ │ ├── key3.db │ │ │ ├── cert7.db │ │ │ └── README │ │ ├── pkcs11 │ │ │ └── rules.mk │ │ └── manifest.mn │ │ └── manifest.mn ├── common │ └── results_header.html ├── smime │ ├── alice.txt │ └── bob.txt ├── README.txt ├── platformlist ├── remote │ └── manifest.mn ├── tools │ ├── sign.html │ └── signjs.html ├── nsspath └── cipher │ └── hash.txt ├── lib ├── dbm │ ├── tests │ │ └── dbmtest.pkg │ └── manifest.mn ├── sqlite │ └── README ├── pki │ ├── doc │ │ └── standiag.png │ └── Makefile ├── freebl │ ├── mpi │ │ ├── utils │ │ │ └── LICENSE │ │ ├── tests │ │ │ └── LICENSE │ │ └── doc │ │ │ └── LICENSE │ └── ec.h ├── ckfw │ ├── dbm │ │ ├── config.mk │ │ └── Makefile │ ├── nssckg.h │ ├── capi │ │ └── README │ ├── nssckepv.h │ ├── nssckft.h │ ├── ckt.h │ └── nssckt.h ├── cryptohi │ ├── keyt.h │ ├── key.h │ └── config.mk ├── libpkix │ ├── pkix_pl_nss │ │ ├── manifest.mn │ │ ├── config.mk │ │ ├── pki │ │ │ └── config.mk │ │ ├── module │ │ │ └── config.mk │ │ └── system │ │ │ └── config.mk │ ├── pkix │ │ ├── manifest.mn │ │ ├── config.mk │ │ ├── store │ │ │ ├── config.mk │ │ │ └── manifest.mn │ │ ├── top │ │ │ └── config.mk │ │ ├── util │ │ │ └── config.mk │ │ ├── certsel │ │ │ └── config.mk │ │ ├── checker │ │ │ └── config.mk │ │ ├── crlsel │ │ │ └── config.mk │ │ ├── params │ │ │ └── config.mk │ │ └── results │ │ │ └── config.mk │ ├── manifest.mn │ └── include │ │ └── config.mk ├── jar │ └── Makefile ├── base │ └── Makefile ├── softoken │ └── sftkdbt.h ├── smime │ └── smimesym.c ├── util │ └── nsslocks.h ├── sysinit │ └── manifest.mn ├── pkcs7 │ └── config.mk ├── certdb │ └── config.mk ├── certhigh │ └── config.mk ├── pk11wrap │ └── config.mk ├── crmf │ └── config.mk ├── pkcs12 │ └── config.mk └── zlib │ └── inffast.h ├── trademarks.txt ├── coreconf ├── IRIX5.2.mk ├── OSF1V2.0.mk ├── OSF1V3.0.mk ├── Android.mk ├── OSF1V4.0B.mk ├── ReliantUNIX5.4.mk ├── SCOOS5.0.mk ├── IRIX5.3.mk ├── HP-UXB.10.mk ├── IRIX5.mk ├── OSF1V4.0D.mk ├── HP-UXA.09.mk ├── IRIX6.3.mk ├── IRIX6.2.mk ├── HP-UXB.10.01.mk ├── Makefile ├── IRIX6.5.mk ├── WIN95.mk └── IRIX6.mk └── manifest.mn /cmd/bltest/tests/aes_gcm/aad0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/aad1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/aad12: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/aad13: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/aad14: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/aad2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/aad6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/aad7: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/aad8: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/html/.hgignore: -------------------------------------------------------------------------------- 1 | *.proc 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/plaintext0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/plaintext12: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/plaintext6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/numtests: -------------------------------------------------------------------------------- 1 | 21 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/numtests: -------------------------------------------------------------------------------- 1 | 21 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/md2/numtests: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/md5/numtests: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc4/key0: -------------------------------------------------------------------------------- 1 | zyxwvuts 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc4/key1: -------------------------------------------------------------------------------- 1 | zyxwvuts 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc4/numtests: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rsa/numtests: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/sha1/numtests: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/sha224/numtests: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/sha256/numtests: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/sha384/numtests: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/sha512/numtests: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cbc/numtests: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_ctr/numtests: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/numtests: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_ecb/numtests: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/iv0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/iv1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/iv12: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/iv13: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/iv6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/iv7: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/numtests: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/des3_cbc/iv0: -------------------------------------------------------------------------------- 1 | 12345678 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/des3_cbc/numtests: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/des3_ecb/numtests: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/des_cbc/iv0: -------------------------------------------------------------------------------- 1 | 12345678 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/des_cbc/key0: -------------------------------------------------------------------------------- 1 | zyxwvuts 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/des_cbc/numtests: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/des_ecb/key0: -------------------------------------------------------------------------------- 1 | zyxwvuts 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/des_ecb/numtests: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc2_cbc/iv0: -------------------------------------------------------------------------------- 1 | 12345678 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc2_cbc/key0: -------------------------------------------------------------------------------- 1 | zyxwvuts 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc2_cbc/numtests: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc2_ecb/key0: -------------------------------------------------------------------------------- 1 | zyxwvuts 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc2_ecb/numtests: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc5_cbc/iv0: -------------------------------------------------------------------------------- 1 | 12345678 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc5_cbc/key0: -------------------------------------------------------------------------------- 1 | zyxwvuts 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc5_cbc/numtests: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc5_ecb/key0: -------------------------------------------------------------------------------- 1 | zyxwvuts 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc5_ecb/numtests: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/seed_cbc/numtests: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/seed_ecb/numtests: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/sha224/plaintext0: -------------------------------------------------------------------------------- 1 | abc 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/sha256/plaintext0: -------------------------------------------------------------------------------- 1 | abc 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/sha384/plaintext0: -------------------------------------------------------------------------------- 1 | abc 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/sha512/plaintext0: -------------------------------------------------------------------------------- 1 | abc 2 | -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/certsel/keyUsage: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/key0: -------------------------------------------------------------------------------- 1 | chicken teriyaki -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/key1: -------------------------------------------------------------------------------- 1 | chicken teriyaki -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/key2: -------------------------------------------------------------------------------- 1 | chicken teriyaki -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/key3: -------------------------------------------------------------------------------- 1 | chicken teriyaki -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/key4: -------------------------------------------------------------------------------- 1 | chicken teriyaki -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/key5: -------------------------------------------------------------------------------- 1 | chicken teriyaki -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/key0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/key1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/camellia_cbc/numtests: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/camellia_ecb/numtests: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/des_cbc/plaintext0: -------------------------------------------------------------------------------- 1 | Mozilla! 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/des_ecb/plaintext0: -------------------------------------------------------------------------------- 1 | Mozilla! 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc2_cbc/plaintext0: -------------------------------------------------------------------------------- 1 | Mozilla! 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc2_ecb/plaintext0: -------------------------------------------------------------------------------- 1 | Mozilla! 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc4/plaintext0: -------------------------------------------------------------------------------- 1 | Mozilla! 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc5_cbc/plaintext0: -------------------------------------------------------------------------------- 1 | Mozilla! 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc5_ecb/plaintext0: -------------------------------------------------------------------------------- 1 | Mozilla! 2 | -------------------------------------------------------------------------------- /doc/.hgignore: -------------------------------------------------------------------------------- 1 | date.xml 2 | version.xml 3 | 4 | -------------------------------------------------------------------------------- /tests/ssl/sslreq.dat: -------------------------------------------------------------------------------- 1 | GET / HTTP/1.0 2 | 3 | -------------------------------------------------------------------------------- /tests/ssl/sslreq.txt: -------------------------------------------------------------------------------- 1 | GET / HTTP/1.0 2 | 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cbc/iv0: -------------------------------------------------------------------------------- 1 | qwertyuiopasdfgh 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cbc/key0: -------------------------------------------------------------------------------- 1 | fedcba9876543210 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/plaintext0: -------------------------------------------------------------------------------- 1 | I would like the -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_ecb/key0: -------------------------------------------------------------------------------- 1 | fedcba9876543210 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/key6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/key7: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/plaintext1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/plaintext13: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/plaintext7: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/des3_cbc/plaintext0: -------------------------------------------------------------------------------- 1 | Mozilla! 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/des3_ecb/plaintext0: -------------------------------------------------------------------------------- 1 | Mozilla! 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/des_cbc/ciphertext0: -------------------------------------------------------------------------------- 1 | Perdg9FMYQ4= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/des_ecb/ciphertext0: -------------------------------------------------------------------------------- 1 | 3bNoWzzNiFc= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/md2/plaintext0: -------------------------------------------------------------------------------- 1 | 16-bytes to MD2. 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc2_cbc/ciphertext0: -------------------------------------------------------------------------------- 1 | 3ki6eVsWpY8= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc2_ecb/ciphertext0: -------------------------------------------------------------------------------- 1 | WT+tc4fANhQ= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc4/ciphertext0: -------------------------------------------------------------------------------- 1 | 34sTZJtr20k= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc5_cbc/ciphertext0: -------------------------------------------------------------------------------- 1 | qsv4Fn2J6d0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc5_ecb/ciphertext0: -------------------------------------------------------------------------------- 1 | 4ZKK/1v5Ohc= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/seed_cbc/iv0: -------------------------------------------------------------------------------- 1 | 1234567890123456 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/seed_cbc/key0: -------------------------------------------------------------------------------- 1 | fedcba9876543210 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/seed_ecb/iv0: -------------------------------------------------------------------------------- 1 | 1234567890123456 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/seed_ecb/key0: -------------------------------------------------------------------------------- 1 | fedcba9876543210 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_ecb/plaintext0: -------------------------------------------------------------------------------- 1 | 0123456789abcdef 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/camellia_cbc/iv0: -------------------------------------------------------------------------------- 1 | qwertyuiopasdfgh 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/camellia_cbc/key0: -------------------------------------------------------------------------------- 1 | fedcba9876543210 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/camellia_ecb/key0: -------------------------------------------------------------------------------- 1 | fedcba9876543210 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/des3_cbc/ciphertext0: -------------------------------------------------------------------------------- 1 | KV3MDNGKWOc= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/des3_ecb/ciphertext0: -------------------------------------------------------------------------------- 1 | RgckVNh4QcM= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/seed_cbc/plaintext0: -------------------------------------------------------------------------------- 1 | 0123456789abcdef 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/seed_ecb/plaintext0: -------------------------------------------------------------------------------- 1 | 0123456789abcdef 2 | -------------------------------------------------------------------------------- /tests/iopr/server_scr/sslreq.dat: -------------------------------------------------------------------------------- 1 | GET / HTTP/1.0 2 | 3 | -------------------------------------------------------------------------------- /tests/memleak/sslreq.dat: -------------------------------------------------------------------------------- 1 | GET /stop HTTP/1.0 2 | 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/key12: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/key13: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/bltest/tests/camellia_cbc/key1: -------------------------------------------------------------------------------- 1 | fedcba9876543210fedcba98 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/camellia_cbc/plaintext0: -------------------------------------------------------------------------------- 1 | 0123456789abcdef 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/camellia_ecb/key1: -------------------------------------------------------------------------------- 1 | fedcba9876543210fedcba98 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/camellia_ecb/plaintext0: -------------------------------------------------------------------------------- 1 | 0123456789abcdef 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/des3_cbc/key0: -------------------------------------------------------------------------------- 1 | abcdefghijklmnopqrstuvwx 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/des3_ecb/key0: -------------------------------------------------------------------------------- 1 | abcdefghijklmnopqrstuvwx 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/keyseed0: -------------------------------------------------------------------------------- 1 | AAAAAAAAAAAAAAAAAAAAAAAAAAA= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/keyseed1: -------------------------------------------------------------------------------- 1 | AAAAAAAAAAAAAAAAAAAAAAAAAAA= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/keyseed2: -------------------------------------------------------------------------------- 1 | AAAAAAAAAAAAAAAAAAAAAAAAAAA= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/keyseed3: -------------------------------------------------------------------------------- 1 | AAAAAAAAAAAAAAAAAAAAAAAAAAA= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/keyseed4: -------------------------------------------------------------------------------- 1 | AAAAAAAAAAAAAAAAAAAAAAAAAAA= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/keyseed5: -------------------------------------------------------------------------------- 1 | AAAAAAAAAAAAAAAAAAAAAAAAAAA= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/sigseed0: -------------------------------------------------------------------------------- 1 | aHpm2QZI+ZOGfhIfTd+d2wEgVYQ= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/sigseed1: -------------------------------------------------------------------------------- 1 | mMvMSWnYReJGG19mOD3VA3ErvPo= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/sigseed2: -------------------------------------------------------------------------------- 1 | jLNdJVUFpMQUIeVi0QgnJmqmhmM= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/sigseed3: -------------------------------------------------------------------------------- 1 | hZdsVhCnSVlTEEClUSs0fqxYfkg= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/sigseed4: -------------------------------------------------------------------------------- 1 | M8e6iP9pcHlxslrDRK5KVm4ZX5k= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/sigseed5: -------------------------------------------------------------------------------- 1 | LxcJB6xpcmsU8iBW3LN7TfhfdCQ= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/md2/ciphertext0: -------------------------------------------------------------------------------- 1 | CS/UNcrWhB5Knt7Gf8Tz3Q== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/md5/ciphertext0: -------------------------------------------------------------------------------- 1 | XN8lnQuWAiMqmSGfvd8Hdw== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc5_cbc/params0: -------------------------------------------------------------------------------- 1 | rounds=10 2 | wordsize=4 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc5_ecb/params0: -------------------------------------------------------------------------------- 1 | rounds=10 2 | wordsize=4 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/ciphertext0: -------------------------------------------------------------------------------- 1 | l8Y1NWjyv4y02KWANi2n/38= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/plaintext1: -------------------------------------------------------------------------------- 1 | I would like the General Gau's -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/plaintext2: -------------------------------------------------------------------------------- 1 | I would like the General Gau's C -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_ecb/ciphertext0: -------------------------------------------------------------------------------- 1 | PVuaCIiaKQhblgFCbVMTTg== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/ciphertext0: -------------------------------------------------------------------------------- 1 | WOL8zvp+MGE2fx1XpOdFWg== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/ciphertext12: -------------------------------------------------------------------------------- 1 | Uw+K+8dFNrmpY7TxxMtziw== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/ciphertext6: -------------------------------------------------------------------------------- 1 | zTOyisdz90ugDtHzElckNQ== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/plaintext0: -------------------------------------------------------------------------------- 1 | qZk+NkcGgWq6PiVxeFDCbJzQ2J0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/plaintext1: -------------------------------------------------------------------------------- 1 | WEKejzcfnh1ppb+WpVTWJ8/VSFw= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/plaintext11: -------------------------------------------------------------------------------- 1 | PlUtQFJV4fg6RHC9IFSw1nSy/dY= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/plaintext16: -------------------------------------------------------------------------------- 1 | mbNzEDnv9o8UR+5qjp+UCBlCe70= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/plaintext6: -------------------------------------------------------------------------------- 1 | uCkA/iALiJlpG34VqA2JNi5cqJY= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/plaintext0: -------------------------------------------------------------------------------- 1 | qZk+NkcGgWq6PiVxeFDCbJzQ2J0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/plaintext1: -------------------------------------------------------------------------------- 1 | qZk+NkcGgWq6PiVxeFDCbJzQ2J0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/plaintext10: -------------------------------------------------------------------------------- 1 | qZk+NkcGgWq6PiVxeFDCbJzQ2J0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/plaintext11: -------------------------------------------------------------------------------- 1 | qZk+NkcGgWq6PiVxeFDCbJzQ2J0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/plaintext12: -------------------------------------------------------------------------------- 1 | qZk+NkcGgWq6PiVxeFDCbJzQ2J0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/plaintext13: -------------------------------------------------------------------------------- 1 | qZk+NkcGgWq6PiVxeFDCbJzQ2J0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/plaintext14: -------------------------------------------------------------------------------- 1 | qZk+NkcGgWq6PiVxeFDCbJzQ2J0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/plaintext15: -------------------------------------------------------------------------------- 1 | qZk+NkcGgWq6PiVxeFDCbJzQ2J0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/plaintext16: -------------------------------------------------------------------------------- 1 | qZk+NkcGgWq6PiVxeFDCbJzQ2J0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/plaintext17: -------------------------------------------------------------------------------- 1 | qZk+NkcGgWq6PiVxeFDCbJzQ2J0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/plaintext18: -------------------------------------------------------------------------------- 1 | qZk+NkcGgWq6PiVxeFDCbJzQ2J0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/plaintext19: -------------------------------------------------------------------------------- 1 | qZk+NkcGgWq6PiVxeFDCbJzQ2J0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/plaintext2: -------------------------------------------------------------------------------- 1 | qZk+NkcGgWq6PiVxeFDCbJzQ2J0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/plaintext20: -------------------------------------------------------------------------------- 1 | qZk+NkcGgWq6PiVxeFDCbJzQ2J0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/plaintext3: -------------------------------------------------------------------------------- 1 | qZk+NkcGgWq6PiVxeFDCbJzQ2J0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/plaintext4: -------------------------------------------------------------------------------- 1 | qZk+NkcGgWq6PiVxeFDCbJzQ2J0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/plaintext5: -------------------------------------------------------------------------------- 1 | qZk+NkcGgWq6PiVxeFDCbJzQ2J0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/plaintext6: -------------------------------------------------------------------------------- 1 | qZk+NkcGgWq6PiVxeFDCbJzQ2J0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/plaintext7: -------------------------------------------------------------------------------- 1 | qZk+NkcGgWq6PiVxeFDCbJzQ2J0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/plaintext8: -------------------------------------------------------------------------------- 1 | qZk+NkcGgWq6PiVxeFDCbJzQ2J0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/plaintext9: -------------------------------------------------------------------------------- 1 | qZk+NkcGgWq6PiVxeFDCbJzQ2J0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/sigseed0: -------------------------------------------------------------------------------- 1 | aHpm2QZI+ZOGfhIfTd+d2wEgVYQ= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/sigseed1: -------------------------------------------------------------------------------- 1 | aHpm2QZI+ZOGfhIfTd+d2wEgVYQ= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/sigseed2: -------------------------------------------------------------------------------- 1 | aHpm2QZI+ZOGfhIfTd+d2wEgVYQ= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/sigseed3: -------------------------------------------------------------------------------- 1 | aHpm2QZI+ZOGfhIfTd+d2wEgVYQ= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/sigseed4: -------------------------------------------------------------------------------- 1 | aHpm2QZI+ZOGfhIfTd+d2wEgVYQ= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/sigseed5: -------------------------------------------------------------------------------- 1 | aHpm2QZI+ZOGfhIfTd+d2wEgVYQ= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc4/plaintext1: -------------------------------------------------------------------------------- 1 | Mozilla!Mozilla!Mozilla!Mozilla! 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rsa/plaintext0: -------------------------------------------------------------------------------- 1 | 512bitsforRSAPublicKeyEncryption 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/seed_cbc/ciphertext0: -------------------------------------------------------------------------------- 1 | JVdzim3if1YIcpGABasoCQ== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/seed_ecb/ciphertext0: -------------------------------------------------------------------------------- 1 | GX8KY3uUhAQnL6XbQhXjEw== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/sha1/ciphertext0: -------------------------------------------------------------------------------- 1 | cDSMAygXMPIJZC5bntZ4ZhecQ9g= 2 | -------------------------------------------------------------------------------- /lib/dbm/tests/dbmtest.pkg: -------------------------------------------------------------------------------- 1 | [gecko-tests] 2 | dist/bin/lots@BINS@ 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cbc/plaintext0: -------------------------------------------------------------------------------- 1 | 0123456789abcdef0123456789abcdef 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/camellia_cbc/ciphertext0: -------------------------------------------------------------------------------- 1 | taydfPlRJe3wf8Td0xJ9Tw== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/camellia_cbc/ciphertext1: -------------------------------------------------------------------------------- 1 | yoYCZwKnUMcS4ADHxnwObA== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/camellia_cbc/ciphertext2: -------------------------------------------------------------------------------- 1 | T+Wn4cs1Sbqrh/XtNd4vzQ== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/camellia_cbc/key2: -------------------------------------------------------------------------------- 1 | fedcba9876543210fedcba9876543210 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/camellia_ecb/ciphertext0: -------------------------------------------------------------------------------- 1 | 6v0CGxSwow3AhsyhunfdbQ== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/camellia_ecb/ciphertext1: -------------------------------------------------------------------------------- 1 | Nf1GwJiBtZT+VPJp+gBhPA== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/camellia_ecb/ciphertext2: -------------------------------------------------------------------------------- 1 | ilB/0K3SI86Oecwh7cruGA== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/camellia_ecb/key2: -------------------------------------------------------------------------------- 1 | fedcba9876543210fedcba9876543210 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/sigseed6: -------------------------------------------------------------------------------- 1 | /jE5MmJpdHNPZlRleHQwMDAwMDAwMDAw 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/sigseed7: -------------------------------------------------------------------------------- 1 | /jE5MmJpdHNPZlRleHQwMDAwMDAwMDAw 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/sha1/plaintext0: -------------------------------------------------------------------------------- 1 | A cage went in search of a bird. 2 | -------------------------------------------------------------------------------- /lib/sqlite/README: -------------------------------------------------------------------------------- 1 | This is SQLite 3.7.14.1. 2 | 3 | Local changes: 4 | -------------------------------------------------------------------------------- /trademarks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/trademarks.txt -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/keyseed10: -------------------------------------------------------------------------------- 1 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/keyseed6: -------------------------------------------------------------------------------- 1 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/keyseed7: -------------------------------------------------------------------------------- 1 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/keyseed8: -------------------------------------------------------------------------------- 1 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/keyseed9: -------------------------------------------------------------------------------- 1 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/plaintext12: -------------------------------------------------------------------------------- 1 | tGiqjB9KQERHn6GvDD8iHrgM5nYcmcaGbRp9nQ== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/plaintext17: -------------------------------------------------------------------------------- 1 | INmoiblVarLpT/1EghXog/90qXfqHhqcQlUsmg== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/plaintext2: -------------------------------------------------------------------------------- 1 | IDdekD+X/lylh+t2yXvLHboeHUZAZUozsUU48g== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/plaintext7: -------------------------------------------------------------------------------- 1 | KfVXa9k+jC0vrKPpgWQNMrHmPXpYTROh7YXBMw== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/sigseed10: -------------------------------------------------------------------------------- 1 | nO2J6lBQmCIigw7+8m5zlPWrfYN9RUmWLShfrg== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/sigseed6: -------------------------------------------------------------------------------- 1 | cZc5LTLQr2pxg8wzmFVvj2h9hqj/dCvmrThWLw== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/sigseed7: -------------------------------------------------------------------------------- 1 | N/rdQZ/L0rBzoGrpa57Otj4prumsX6K9sxq4XQ== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/sigseed8: -------------------------------------------------------------------------------- 1 | bzJlRqoXSz0xnvczHsjf02PdeK5YOpIBZf9+VA== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/sigseed9: -------------------------------------------------------------------------------- 1 | fg8c4h0YWuZcCgA5VWfqnPIXRitYucicTl/5zw== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/sigseed10: -------------------------------------------------------------------------------- 1 | fjIzMWJpdHNPZlRleHQwMTAyMDMwNDA1MDYwNzA= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/sigseed11: -------------------------------------------------------------------------------- 1 | fjIzMWJpdHNPZlRleHQwMTAyMDMwNDA1MDYwNzA= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/sigseed8: -------------------------------------------------------------------------------- 1 | /jIyNGJpdHNPZlRleHQwMDAwMDAwMDAwMDAwMA== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/sigseed9: -------------------------------------------------------------------------------- 1 | /jIyNGJpdHNPZlRleHQwMDAwMDAwMDAwMDAwMA== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/plaintext3: -------------------------------------------------------------------------------- 1 | I would like the General Gau's Chicken, please, -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/plaintext4: -------------------------------------------------------------------------------- 1 | I would like the General Gau's Chicken, please, -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/keyseed11: -------------------------------------------------------------------------------- 1 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/keyseed12: -------------------------------------------------------------------------------- 1 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/keyseed13: -------------------------------------------------------------------------------- 1 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/keyseed14: -------------------------------------------------------------------------------- 1 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/keyseed15: -------------------------------------------------------------------------------- 1 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/keyseed16: -------------------------------------------------------------------------------- 1 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/keyseed17: -------------------------------------------------------------------------------- 1 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/keyseed18: -------------------------------------------------------------------------------- 1 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/keyseed19: -------------------------------------------------------------------------------- 1 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/keyseed20: -------------------------------------------------------------------------------- 1 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/plaintext13: -------------------------------------------------------------------------------- 1 | CrhLNBzxdeOM06JwSiDHlsHH0AlCJKHkdpQvJw4OTio= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/plaintext18: -------------------------------------------------------------------------------- 1 | b5h4y7cMDS2TQtEP6tSlMuxCp3q1hlT3LLt7noMBKrA= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/plaintext3: -------------------------------------------------------------------------------- 1 | Mqqlk48AsWXhRAWNXCGQuvRpPAwqfbTlmnfsFKcKblA= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/plaintext8: -------------------------------------------------------------------------------- 1 | GC7dULJ04jKDdn7fzRjVyUZm7aDbl31cEJU6STyznuA= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/sigseed11: -------------------------------------------------------------------------------- 1 | LLnB1hfhJ6R3DQqUb7lHxRAO0MpZRU6oBHn2iF7BBTQ= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/sigseed12: -------------------------------------------------------------------------------- 1 | RQMLeaOVsWMnAMuv/q2XmY0CvtjgZWh2/AF05L25b3k= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/sigseed13: -------------------------------------------------------------------------------- 1 | EXpSnj/fx5hDpaTAdTkDa4ZSFOAUtJKMKjH0e/YqT9s= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/sigseed14: -------------------------------------------------------------------------------- 1 | I2gDehx2R8aD1+MBrHm3/uvHNu/+OrFkS2gwi0soYg0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/sigseed15: -------------------------------------------------------------------------------- 1 | X+Ya/dvfBESbJClaUqGgN9PzFEGjzsE4t/AQLbhu8TI= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/sigseed16: -------------------------------------------------------------------------------- 1 | QPUDq9cP1Jp2xnqD4IsGKz/UZa2SvkM8CA5fKVu59Vk= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/sigseed17: -------------------------------------------------------------------------------- 1 | KeTXeQ4YG0dnkD/g6zd1fzPxMzfDNYjB/b+6DmVatiE= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/sigseed18: -------------------------------------------------------------------------------- 1 | PXwGijl4stj+kDS8rWWtfDAMREDkCF3igOV37qcsEgc= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/sigseed19: -------------------------------------------------------------------------------- 1 | QLXMaFw9H1kHIiivlVFoO1uMj/ZSQBFK0trPzPOSgFc= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/sigseed20: -------------------------------------------------------------------------------- 1 | tZkRG594QCzv573ov1U7bKANWrr5oViqQvJge/eFELw= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/sigseed12: -------------------------------------------------------------------------------- 1 | /jI1NmJpdHNPZlRleHQwMTAyMDMwNDA1MDYwNzA4MDk= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rc4/ciphertext1: -------------------------------------------------------------------------------- 1 | 34sTZJtr20nGP6VxS3BIBxxIYm6QGIa1rehFHn51z9M= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rsa/ciphertext0: -------------------------------------------------------------------------------- 1 | qPVrXv0y3SC5rY44bIi6GE4Aec8uDpHH7/cCg0FU5as= 2 | -------------------------------------------------------------------------------- /cmd/samples/cert0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/samples/cert0 -------------------------------------------------------------------------------- /cmd/samples/cert1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/samples/cert1 -------------------------------------------------------------------------------- /cmd/samples/cert2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/samples/cert2 -------------------------------------------------------------------------------- /tests/doc/clean.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/doc/clean.gif -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cbc/ciphertext0: -------------------------------------------------------------------------------- 1 | oJLgOzZ1GiWt3DGo2sPKaOnyGuRz5sZwmDyn4dvAqd8= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/ciphertext1: -------------------------------------------------------------------------------- 1 | l2hyaNbszMDAeyXiXs/l/AB4Pg79ssHURdTI7/ftIg== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/ciphertext2: -------------------------------------------------------------------------------- 1 | l2hyaNbszMDAeyXiXs/lhDkxJSOnhmLVvn/LzJjr9ag= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/ciphertext1: -------------------------------------------------------------------------------- 1 | A4jazmC2o5LzKMK5cbL+eKtuR9Qs7BO99TpnshJXvd8= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/ciphertext13: -------------------------------------------------------------------------------- 1 | zqdAPU1ga24HTsXTuvOdGNDRyKeZmWvwJluYtdSKuRk= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/ciphertext7: -------------------------------------------------------------------------------- 1 | mOckfAfw/kEcJn5DhLD2AC/1jYADOSerjvTUWHUU8Ps= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/sigseed13: -------------------------------------------------------------------------------- 1 | ATI4MWJpdHNPZlRleHQwMTAyMDMwNDA1MDYwNzA4MDkwYTBi 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/sigseed14: -------------------------------------------------------------------------------- 1 | ATI4MWJpdHNPZlRleHQwMTAyMDMwNDA1MDYwNzA4MDkwYTBi 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/sha224/ciphertext0: -------------------------------------------------------------------------------- 1 | Iwl9IjQF2CKGQqR3vaJVsyqtvOS9oLP342ydpw== 2 | 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/sha224/ciphertext1: -------------------------------------------------------------------------------- 1 | dTiLFlEndsxdul2h/YkBULDGRVy09YsZUlIlJQ== 2 | 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/sha256/ciphertext0: -------------------------------------------------------------------------------- 1 | ungWv48Bz+pBQUDeXa4iI7ADYaOWF3qctBD/YfIAFa0= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/sha256/ciphertext1: -------------------------------------------------------------------------------- 1 | JI1qYdIGOLjlwCaTDD5gOaM85Flk/yFn9uzt1BnbBsE= 2 | -------------------------------------------------------------------------------- /cmd/samples/pkcs7.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/samples/pkcs7.ber -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/ciphertext0: -------------------------------------------------------------------------------- 1 | fB0bnKWvjT6X5NIkZ5l/Y/DXZ6QNI6j0iPhR/ZERkfj67xRnTWY1cg== 2 | -------------------------------------------------------------------------------- /cmd/samples/x509v3.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/samples/x509v3.der -------------------------------------------------------------------------------- /lib/pki/doc/standiag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/lib/pki/doc/standiag.png -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/ciphertext1: -------------------------------------------------------------------------------- 1 | UO0OgQ4/HHy2rGIzIFhEi9iyhMDGre0XIWtGt+S28ql8GtfMPag/3g== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/ciphertext2: -------------------------------------------------------------------------------- 1 | r+5xnn+Ei1Q0nMw7T7JgZYM6TY5zTv6ZIlbzEyXnSbwyokoflXs6Gw== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/ciphertext3: -------------------------------------------------------------------------------- 1 | dmg6CF1nQurflaYa91+IEnbP0mo7naf5km6qrQvr1IRcZ/zbZNEkUw== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/ciphertext4: -------------------------------------------------------------------------------- 1 | d8TZn2KzrX3R/mSY20Wl2nPOe94jhxoAKuUD/auqaoTcyPOHaXN/AQ== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/ciphertext5: -------------------------------------------------------------------------------- 1 | pT8fjyC409RyDxSourUiawedmVMR9T9qTla1H2DiDUlXronhYq6mFg== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/ciphertext0: -------------------------------------------------------------------------------- 1 | GoWqve3YezF7HOABQjioFL/3oq32oM9pHsGTQTJE7aFE62nItVqAdg== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/ciphertext1: -------------------------------------------------------------------------------- 1 | PM6xHbiwP6Xcb44mg7BHtaJvd8PkxgvHAB1sh2cF0so3naFf0Tj6vQ== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/ciphertext2: -------------------------------------------------------------------------------- 1 | Vli8Hau3xL8oder6ZdM9Y3fMd92jbguiMq6F+9CUjlUQXy5EwAVGeg== 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/ciphertext3: -------------------------------------------------------------------------------- 1 | AFohw5TN/dpmqbhp/T4z1Rl1boAUA6r9eEPJbYN0zf+eHZzyvezxqjxU 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/ciphertext4: -------------------------------------------------------------------------------- 1 | AtJdCPXn5yQW34jekhsnsNmaMOeeA3KIVl1d2+7pb6QycUAzYccgwSrp 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/ciphertext5: -------------------------------------------------------------------------------- 1 | AzEg0sOGHwxd0o3cv+o9dsRPOzXMAdpgtI6O0uUmVN2+a5qI5FYQlItz 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/sha224/plaintext1: -------------------------------------------------------------------------------- 1 | abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/sha256/plaintext1: -------------------------------------------------------------------------------- 1 | abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq 2 | -------------------------------------------------------------------------------- /cmd/samples/pkcs7bday.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/samples/pkcs7bday.ber -------------------------------------------------------------------------------- /cmd/samples/pkcs7cnet.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/samples/pkcs7cnet.ber -------------------------------------------------------------------------------- /cmd/samples/pkcs7news.ber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/samples/pkcs7news.ber -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_ctr/iv0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_ctr/iv0 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_ctr/iv1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_ctr/iv1 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_ctr/iv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_ctr/iv2 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_ctr/key0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_ctr/key0 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_ctr/key1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_ctr/key1 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_ctr/key2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_ctr/key2 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/iv0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_cts/iv0 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/iv1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_cts/iv1 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/iv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_cts/iv2 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/iv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_cts/iv3 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/iv4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_cts/iv4 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/iv5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_cts/iv5 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/plaintext5: -------------------------------------------------------------------------------- 1 | I would like the General Gau's Chicken, please, and wonton soup. -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/aad3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/aad3 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/aad4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/aad4 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/aad5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/aad5 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/aad9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/aad9 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/iv10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/iv10 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/iv11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/iv11 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/iv14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/iv14 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/iv15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/iv15 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/iv16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/iv16 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/iv17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/iv17 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/iv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/iv2 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/iv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/iv3 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/iv4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/iv4 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/iv5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/iv5 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/iv8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/iv8 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/iv9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/iv9 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/key2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/key2 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/key3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/key3 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/key4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/key4 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/key5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/key5 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/key8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/key8 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/key9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/key9 -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/plaintext14: -------------------------------------------------------------------------------- 1 | 4II54Zw0xvxpgkZbrlGIWAPGug2Ih8VgwXb+NG3cRkcdkNR5SHsy/jDgrlTYQGn/ 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/plaintext19: -------------------------------------------------------------------------------- 1 | kYTu+RQoZJZSUNshOvoBQxBj2N7aAyjFYJzs0WWVBdRaLlujVOVu2dlxGwJktm9M 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/plaintext4: -------------------------------------------------------------------------------- 1 | w8+3pOAcqljMh1bLGnWAWlZvlgnJhOJDBC2C0M3mTFrCeylP+FfUSfGfRD2uDS2f 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/plaintext9: -------------------------------------------------------------------------------- 1 | hV6v7+GSeeSI2lL+Nu9CJCNoU2pR8eyGkOsfOxb2lBZ42gDIglCTvg88E4ocTsam 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/sigseed15: -------------------------------------------------------------------------------- 1 | /jM4NGJpdHNPZlRleHQwMTAyMDMwNDA1MDYwNzA4MDkwYTBiMGMwZDBlMGYxMDEx 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/md5/plaintext0: -------------------------------------------------------------------------------- 1 | 63-byte input to MD5 can be a bit tricky, but no problems here. 2 | -------------------------------------------------------------------------------- /tests/libpkix/certs/hy2hc-bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/hy2hc-bc -------------------------------------------------------------------------------- /tests/libpkix/certs/hy2hy-bc0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/hy2hy-bc0 -------------------------------------------------------------------------------- /tests/libpkix/certs/nss2alice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/nss2alice -------------------------------------------------------------------------------- /tests/libpkix/certs/sun2sun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/sun2sun -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/ciphertext3: -------------------------------------------------------------------------------- 1 | l2hyaNbszMDAeyXiXs/lhDkxJSOnhmLVvn/LzJjr9bP//ZQMFqGMG1VJ0vg4Ap4= 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/ciphertext4: -------------------------------------------------------------------------------- 1 | l2hyaNbszMDAeyXiXs/lhDkxJSOnhmLVvn/LzJjr9aidrYu7lsTNwDvBA+GhlLvY 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/aad10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/aad10 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/aad11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/aad11 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/aad15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/aad15 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/aad16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/aad16 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/aad17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/aad17 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/key10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/key10 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/key11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/key11 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/key14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/key14 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/key15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/key15 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/key16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/key16 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/key17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/key17 -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/ciphertext6: -------------------------------------------------------------------------------- 1 | 5+HDXH/ieN8Bzxd3dfxKZoqbbhsm7jyeqWdemt6Xy0kx+7zwSYsh9Ng5KRdy6wtA 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/ciphertext7: -------------------------------------------------------------------------------- 1 | WcS9umnUASP0X6lHvkWJwPY37ZVvAMLBERHLjL3Vzg6QVjwcS8kDVortTFei3aTx 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/sigseed16: -------------------------------------------------------------------------------- 1 | fjQwN2JpdHNPZlRleHQwMTAyMDMwNDA1MDYwNzA4MDkwYTBiMGMwZDBlMGYxMDExMTIx 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/sigseed17: -------------------------------------------------------------------------------- 1 | fjQwN2JpdHNPZlRleHQwMTAyMDMwNDA1MDYwNzA4MDkwYTBiMGMwZDBlMGYxMDExMTIx 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/sha384/ciphertext0: -------------------------------------------------------------------------------- 1 | ywB1P0WjXou1oD1pmsZQBycsMqsO3tFjGotgWkP/W+2AhgcroefMI1i67KE0yCWn 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/sha384/ciphertext1: -------------------------------------------------------------------------------- 1 | CTMMM/cRR+g9GS/Hgs0bR1MRGxc7OwXSL6CAhuOw9xL8x8caVX4tuWbD6fqRdGA5 2 | -------------------------------------------------------------------------------- /tests/libpkix/certs/OCSPCA1.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/OCSPCA1.p12 -------------------------------------------------------------------------------- /tests/libpkix/certs/OCSPCA2.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/OCSPCA2.p12 -------------------------------------------------------------------------------- /tests/libpkix/certs/OCSPCA3.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/OCSPCA3.p12 -------------------------------------------------------------------------------- /tests/libpkix/certs/anchor2dsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/anchor2dsa -------------------------------------------------------------------------------- /tests/libpkix/certs/crldiff.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/crldiff.crl -------------------------------------------------------------------------------- /tests/libpkix/certs/crlgood.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/crlgood.crl -------------------------------------------------------------------------------- /tests/libpkix/certs/yassir2bcn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/yassir2bcn -------------------------------------------------------------------------------- /tests/libpkix/certs/GoodCACert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/GoodCACert.crt -------------------------------------------------------------------------------- /tests/libpkix/certs/OCSPCA1.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/OCSPCA1.cert -------------------------------------------------------------------------------- /tests/libpkix/certs/OCSPCA2.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/OCSPCA2.cert -------------------------------------------------------------------------------- /tests/libpkix/certs/OCSPCA3.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/OCSPCA3.cert -------------------------------------------------------------------------------- /tests/libpkix/certs/OCSPEE11.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/OCSPEE11.cert -------------------------------------------------------------------------------- /tests/libpkix/certs/OCSPEE12.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/OCSPEE12.cert -------------------------------------------------------------------------------- /tests/libpkix/certs/OCSPEE13.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/OCSPEE13.cert -------------------------------------------------------------------------------- /tests/libpkix/certs/OCSPEE14.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/OCSPEE14.cert -------------------------------------------------------------------------------- /tests/libpkix/certs/OCSPEE15.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/OCSPEE15.cert -------------------------------------------------------------------------------- /tests/libpkix/certs/OCSPEE21.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/OCSPEE21.cert -------------------------------------------------------------------------------- /tests/libpkix/certs/OCSPEE22.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/OCSPEE22.cert -------------------------------------------------------------------------------- /tests/libpkix/certs/OCSPEE23.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/OCSPEE23.cert -------------------------------------------------------------------------------- /tests/libpkix/certs/OCSPEE31.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/OCSPEE31.cert -------------------------------------------------------------------------------- /tests/libpkix/certs/OCSPEE32.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/OCSPEE32.cert -------------------------------------------------------------------------------- /tests/libpkix/certs/OCSPEE33.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/OCSPEE33.cert -------------------------------------------------------------------------------- /tests/libpkix/certs/OCSPRoot.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/OCSPRoot.cert -------------------------------------------------------------------------------- /tests/libpkix/certs/OCSPRoot.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/OCSPRoot.p12 -------------------------------------------------------------------------------- /tests/libpkix/certs/PayPalEE.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/PayPalEE.cert -------------------------------------------------------------------------------- /tests/libpkix/certs/PayPalICA.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/PayPalICA.cert -------------------------------------------------------------------------------- /tests/libpkix/certs/TestCA.ca.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/TestCA.ca.cert -------------------------------------------------------------------------------- /tests/libpkix/certs/yassir2yassir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/yassir2yassir -------------------------------------------------------------------------------- /tests/libpkix/sample_apps/cert8.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/sample_apps/cert8.db -------------------------------------------------------------------------------- /tests/libpkix/sample_apps/key3.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/sample_apps/key3.db -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_ctr/plaintext0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_ctr/plaintext0 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_ctr/plaintext1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_ctr/plaintext1 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_ctr/plaintext2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_ctr/plaintext2 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/plaintext10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/plaintext10 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/plaintext11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/plaintext11 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/plaintext14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/plaintext14 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/plaintext15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/plaintext15 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/plaintext16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/plaintext16 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/plaintext17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/plaintext17 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/plaintext2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/plaintext2 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/plaintext3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/plaintext3 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/plaintext4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/plaintext4 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/plaintext5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/plaintext5 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/plaintext8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/plaintext8 -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/plaintext9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/cmd/bltest/tests/aes_gcm/plaintext9 -------------------------------------------------------------------------------- /tests/libpkix/certs/TestUser50.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/TestUser50.cert -------------------------------------------------------------------------------- /tests/libpkix/certs/TestUser51.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/TestUser51.cert -------------------------------------------------------------------------------- /tests/libpkix/certs/issuer-none.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/issuer-none.crl -------------------------------------------------------------------------------- /tests/libpkix/certs/noExtensionsCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/noExtensionsCert -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/key3.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/key3.db -------------------------------------------------------------------------------- /tests/libpkix/sample_apps/secmod.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/sample_apps/secmod.db -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/ciphertext10: -------------------------------------------------------------------------------- 1 | namWZQDenTtrf0QcpVAjP8RQlEvFB+Ac1KywMC1y8fZoHoZ/fYvq6+ukvFsjKHYE 2 | pkz+4cFkWVo= 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/ciphertext6: -------------------------------------------------------------------------------- 1 | Rd8vQj6UvxVd1OHZ5j8xXqYG3ThSfUz2Moc4yFmz6O+lvAzL9KPLtlFcS5v3hM+s 2 | 3MEB3J+B0x8= 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/ciphertext7: -------------------------------------------------------------------------------- 1 | ZRAuj2TssR8GAXsaDA3vPCmJfCd8SpSLH02muSGtCrsnvTwhFmy5au9wwNvV8wec 2 | qw3VQ9QSW9E= 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/ciphertext8: -------------------------------------------------------------------------------- 1 | nF+kaHndr1wU8H37UyBxX2em/sF5461TNC+20cPhfns8TQrI1J9N0PBMFqCU9C2g 2 | r8xskPXxu8g= 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/ciphertext9: -------------------------------------------------------------------------------- 1 | WrQ+3mahVogUbR9M1xZHAsDERXvU/d66wEgpU2xY6Ksn0oUSxGBjyWv1vOuPutIy 2 | 2PWznEdV0LE= 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/ciphertext8: -------------------------------------------------------------------------------- 1 | ItpmPaGAaoe2feXPbh5+EASLGnEzyYbEnwJ+JFNSOQcoY4a/cMV2rn8FYyBsEDiZ 2 | LPDBU0i2uOg= 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/ciphertext9: -------------------------------------------------------------------------------- 1 | QjzCVGRUjulOLqeBqC5xpY0GWomOrmQUCtImY0czn98a/jHrdgsSRKiMHukBUxM1 2 | TIRGjkV2L+A= 3 | -------------------------------------------------------------------------------- /tests/libpkix/certs/PayPalRootCA.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/PayPalRootCA.cert -------------------------------------------------------------------------------- /tests/libpkix/certs/hanfeiyu2hanfeiyu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/hanfeiyu2hanfeiyu -------------------------------------------------------------------------------- /tests/libpkix/certs/issuer-hanfei.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/issuer-hanfei.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/cert8.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/cert8.db -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/secmod.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/secmod.db -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/ciphertext10: -------------------------------------------------------------------------------- 1 | AF3bbyED08NTrUgKmag9HiuUbaW0skXA/Bp9RPjRAD6M0rp3nvLDKozI940jxPP1 2 | nWpHF7VcyCVzJeV6 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/ciphertext11: -------------------------------------------------------------------------------- 1 | AOLrxy4FWd29ToUjOwLs6GyQ+dYZN6NkZ8oVO6dsAEXt55ePlCWZbOtmk6v9PrNG 2 | JOsY/MHnGhDeAGRl 3 | -------------------------------------------------------------------------------- /tests/libpkix/certs/BrAirWaysBadSig.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/BrAirWaysBadSig.cert -------------------------------------------------------------------------------- /tests/libpkix/certs/extKeyUsage/noEKUCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/extKeyUsage/noEKUCert -------------------------------------------------------------------------------- /tests/libpkix/certs/publicKey/labs2yassir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/publicKey/labs2yassir -------------------------------------------------------------------------------- /tests/libpkix/certs/publicKey/yassir2labs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/publicKey/yassir2labs -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/goodcert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/goodcert.crt -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/ciphertext11: -------------------------------------------------------------------------------- 1 | Nj4BxWTzgKJ9fSOyB68/lh1I/AmVSH9gBSd11ySrPRBJFtkbKScpTkKdU3wG3SRj 2 | 0YRQGMyihz6Qpsg3tEX93g== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/ciphertext12: -------------------------------------------------------------------------------- 1 | BZvunnCLfyDD95GmQO3ulk4KpnKJPEhHmXFYF7Oo9tRL1ByEpyTMhuTwGU7A+/N5 2 | 5lTQ1/ah8IvUaBOUIqXDUw== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/ciphertext13: -------------------------------------------------------------------------------- 1 | YzBV4FXyN8OJmdgcOXhIw4zOgKVbZJ2eeQXCmOKlFEcrv2gxdmDsHksVSRUCewvA 2 | DuGc/Av3XQGTBQTyzhCosA== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/ciphertext14: -------------------------------------------------------------------------------- 1 | T9jyXAWQMAJzgdQWfDF0tr4AiMFfClc9fr0Flg9aHrJfVoac7nv2T+xdXW6hW7H6 2 | EWkAOofszBYhuQobiSIm8g== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/ciphertext15: -------------------------------------------------------------------------------- 1 | akfqV86uzBFtcZD/bG3Zgxq3W0v2yykQg+Qmi0hu0kUBc1X2mKMqvppNSn3afIWV 2 | DN3DSKuKZ1HnL93AGqXR8A== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/ciphertext16: -------------------------------------------------------------------------------- 1 | IcoUjN9EvkrpOy81O45RLQOtltr6gGI/3kkiqV8DJzJz5It3o6pEMHSDwt2JXLUd 2 | shEhd8GFxZyx3P8y/aAqTw== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/ciphertext17: -------------------------------------------------------------------------------- 1 | LlnV8w9zeB04JVtw3t7rOK54308ALB90fAjercZTAVVhXFWy3wyijGCms4XFj6A2 2 | 34xLL08ZNXML+PTwvtE2EA== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/ciphertext18: -------------------------------------------------------------------------------- 1 | U7rmxvM24usxHB6S2V/ESakpRE74HsQnlmCyANWUM95J86dOlT53p5Qa867+707U 2 | mb4gmXag7bP6Xny5YbDBEg== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/ciphertext19: -------------------------------------------------------------------------------- 1 | dpVpihR1XbQgboULT18ZxUCwfQfgiqxZHiAIFkbm7tw9rgEVTs/3sZAHqVPxhfBm 2 | PvfyU38LFeBPs0PJYfNt4g== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/ciphertext20: -------------------------------------------------------------------------------- 1 | pApskFZUxV/FjpnH0aP+6ixb5kgj1Ahs6BHzNM/cRI1keAUJd+xYWYBFTgovJqAw 2 | N7khyliKeKTa/36E1JqKbA== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/plaintext10: -------------------------------------------------------------------------------- 1 | rBhknAaqqqlnKm/advb86OGGUVWFcbz9ihmsNZcQniSGMCNRB1ROUVCb5azZuiZ+ 2 | 4ImIYj1aymGnxDoIS+YZng== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/plaintext15: -------------------------------------------------------------------------------- 1 | OfmOLA3KSs6DsKB+owDqX4JKdU9bT3xwUOJzPGkrsyKo3mur8w2dklEbOObDF5zg 2 | XxEGB/8DFIp8sCqeP2qewg== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/plaintext20: -------------------------------------------------------------------------------- 1 | Q6bpLpUVhU3Sjdd4YG4BnAfUf4u6TrwCAzmSB0q66YryvQBzf3fQ3H4fp4GVuYRV 2 | ftjzEtAhCf9OYBtR4GSnvA== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/plaintext5: -------------------------------------------------------------------------------- 1 | PiPosk1QVF3Ck1taH0AunEzHuPxBHnFMTKPWBsxTI9YdZ5XAEzt5QPHQKm7ja20+ 2 | bmsWwSw++jcz8N2DY6WW2g== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/sigseed20: -------------------------------------------------------------------------------- 1 | /jUyMGJpdHNPZlRleHQwMDAxMDIwMzA0MDUwNjA3MDgwOTBhMGIwYzBkMGUwZjEwMTExMjEz 2 | MTQxNTE2MTcxODE= 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/sha512/ciphertext0: -------------------------------------------------------------------------------- 1 | 3a81oZNherrMQXNJriBBMRLm+k6JqX6iCp7u5ktV05ohkpkqJ0/BqDa6PCOj/uu9 2 | RU1EI2Q86A4qmslPpUyknw== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/sha512/ciphertext1: -------------------------------------------------------------------------------- 1 | jpWbddrjE9qM9PcoFPwUP493ecbrn3+hcpmurbaIkBhQHSieSQD35DMbmd7EtUM6 2 | x9Mp7rbdJlReluVbh0vpCQ== 3 | -------------------------------------------------------------------------------- /tests/libpkix/certs/extKeyUsage/multiEKUCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/extKeyUsage/multiEKUCert -------------------------------------------------------------------------------- /tests/libpkix/certs/keyUsage/noKeyUsagesCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/keyUsage/noKeyUsagesCert -------------------------------------------------------------------------------- /tests/libpkix/certs/publicKey/dsaWithParams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/publicKey/dsaWithParams -------------------------------------------------------------------------------- /tests/libpkix/pkix_pl_tests/module/cert8.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_pl_tests/module/cert8.db -------------------------------------------------------------------------------- /tests/libpkix/pkix_pl_tests/module/key3.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_pl_tests/module/key3.db -------------------------------------------------------------------------------- /tests/libpkix/pkix_pl_tests/module/secmod.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_pl_tests/module/secmod.db -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/anchorcert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/anchorcert.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/revokedcert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/revokedcert.crt -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_ctr/ciphertext0: -------------------------------------------------------------------------------- 1 | h01hkbYg4yYb72hkmQ22zpgG9mt5cP3/hhcYe7n//f9a5N8+29XTXltPCQINsD6r 2 | HgMd2i++A9F5IXCg8wCc7g== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_ctr/ciphertext1: -------------------------------------------------------------------------------- 1 | GryTJBdSHKJPKwRZ/n5uCwkDOewKpvrv1czCxvTOjpQeNrJr0evGcNG9HWZWIKv3 2 | T3in9tKYCVhal9rsWMawUA== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_ctr/ciphertext2: -------------------------------------------------------------------------------- 1 | YB7DE3dXiaW3p/UEu/PSKPRD48pNYrWayoTpkMrK9cUrCTDaoj3pTOhwF7othJiN 2 | 38nFjbZ6raYTwt0IRXlBpg== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/ciphertext5: -------------------------------------------------------------------------------- 1 | l2hyaNbszMDAeyXiXs/lhDkxJSOnhmLVvn/LzJjr9aidrYu7lsTNwDvBA+GhlLvY 2 | SAfv6DbuiaUmcw28L3vIQA== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/ciphertext12: -------------------------------------------------------------------------------- 1 | aQHMte9cFByD9Ff3rZOPOtPI75luPoxemmgjXIgh/9jEeoTdDk8xuAYQUkayCfs+ 2 | DpDaGnOLkfAyZ8GcuaCujg== 3 | -------------------------------------------------------------------------------- /tests/libpkix/certs/generalName/altNameDnCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/generalName/altNameDnCert -------------------------------------------------------------------------------- /tests/libpkix/certs/generalName/altNameDnsCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/generalName/altNameDnsCert -------------------------------------------------------------------------------- /tests/libpkix/certs/generalName/altNameEdiCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/generalName/altNameEdiCert -------------------------------------------------------------------------------- /tests/libpkix/certs/generalName/altNameIpCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/generalName/altNameIpCert -------------------------------------------------------------------------------- /tests/libpkix/certs/generalName/altNameOidCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/generalName/altNameOidCert -------------------------------------------------------------------------------- /tests/libpkix/certs/generalName/altNameUriCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/generalName/altNameUriCert -------------------------------------------------------------------------------- /tests/libpkix/certs/keyUsage/decipherOnlyCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/keyUsage/decipherOnlyCert -------------------------------------------------------------------------------- /tests/libpkix/certs/keyUsage/encipherOnlyCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/keyUsage/encipherOnlyCert -------------------------------------------------------------------------------- /tests/libpkix/certs/publicKey/dsaWithoutParams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/publicKey/dsaWithoutParams -------------------------------------------------------------------------------- /tests/pkcs11/netscape/trivial/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | config.cache 3 | config.h 4 | config.log 5 | config.status 6 | trivial*.tar.gz 7 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/ciphertext13: -------------------------------------------------------------------------------- 1 | AaeVCRJQPbpTqa1+zLd/8xAbkz3KKTr0dlS4tuGC8hc9j5esAeEv+7IklbA3v5Jz 2 | jC+nJy4p81iNO5E9H8nfGGckfQSiFzHG 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/ciphertext14: -------------------------------------------------------------------------------- 1 | AgU0N7zJPg/1UxmCWD5Z+DqDqkRKjy4heFgayCyopb/u4XErAZArgsjashAxzMKC 2 | PSDJasPT90T5Va8sNtjXtSpHWxc2roV9 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/sigseed18: -------------------------------------------------------------------------------- 1 | PjU2NmJpdHNPZlRleHQwMDAxMDIwMzA0MDUwNjA3MDgwOTBhMGIwYzBkMGUwZjEwMTExMjEz 2 | MTQxNTE2MTcxODE5MWExYjE= 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/sigseed19: -------------------------------------------------------------------------------- 1 | PjU2NmJpdHNPZlRleHQwMDAxMDIwMzA0MDUwNjA3MDgwOTBhMGIwYzBkMGUwZjEwMTExMjEz 2 | MTQxNTE2MTcxODE5MWExYjE= 3 | -------------------------------------------------------------------------------- /cmd/crlutil/crlgen_lex_fix.sed: -------------------------------------------------------------------------------- 1 | // { 2 | i #ifdef _WIN32 3 | i #include 4 | i #else 5 | a #endif 6 | } 7 | -------------------------------------------------------------------------------- /tests/libpkix/cert_trust.map: -------------------------------------------------------------------------------- 1 | TestCA.ca CT,C,C 2 | TestUser50 ,, 3 | TestUser51 ,, 4 | PayPalRootCA CT,C,C 5 | PayPalICA ,, 6 | PayPalEE ,, 7 | -------------------------------------------------------------------------------- /tests/libpkix/certs/generalName/altNameNoneCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/generalName/altNameNoneCert -------------------------------------------------------------------------------- /tests/libpkix/certs/generalName/altNameOtherCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/generalName/altNameOtherCert -------------------------------------------------------------------------------- /tests/libpkix/certs/generalName/altNameRfc822Cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/generalName/altNameRfc822Cert -------------------------------------------------------------------------------- /tests/libpkix/certs/generalName/altNameX400Cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/generalName/altNameX400Cert -------------------------------------------------------------------------------- /tests/libpkix/certs/keyIdentifier/authKeyIDCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/keyIdentifier/authKeyIDCert -------------------------------------------------------------------------------- /tests/libpkix/certs/keyIdentifier/subjKeyIDCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/keyIdentifier/subjKeyIDCert -------------------------------------------------------------------------------- /tests/libpkix/certs/keyUsage/multiKeyUsagesCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/keyUsage/multiKeyUsagesCert -------------------------------------------------------------------------------- /tests/pkcs11/netscape/suites/security/ssl/key3.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/pkcs11/netscape/suites/security/ssl/key3.db -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/key0: -------------------------------------------------------------------------------- 1 | AAAABwYFK4EEAAkAAAApBPiF0ntSFtn41JULxlA1l/lHE/zUPGJWkCqtdOryS6yD 2 | WFCoF/IHwHsAAAAUcw+b2b1AJUlmezgu5EjmAGPC0YQ= 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/key1: -------------------------------------------------------------------------------- 1 | AAAABwYFK4EEAAgAAAApBI80VWK9xatmkFRiDTcdeFQ0T9h3h6iVOinMURyWZw0T 2 | 5vZqd8/gvwwAAAAUYOQMjDdtNSL5zY0nVWPWY+UJoqQ= 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/key2: -------------------------------------------------------------------------------- 1 | AAAABwYFK4EEAB4AAAApBGouC+vgvmItzsLO4hXn+AXi3skEE+M19o/QHLfjibbA 2 | p7av8F4tcGgAAAAUmpQDUgnIkiXPBs0moD4jEmJHato= 3 | -------------------------------------------------------------------------------- /tests/libpkix/certs/CertificatePoliciesCritical.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/CertificatePoliciesCritical.crt -------------------------------------------------------------------------------- /tests/libpkix/certs/TrustAnchorRootCertificate.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/TrustAnchorRootCertificate.crt -------------------------------------------------------------------------------- /tests/libpkix/certs/ValidCertificatePathTest1EE.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/ValidCertificatePathTest1EE.crt -------------------------------------------------------------------------------- /tests/libpkix/certs/extKeyUsage/codeSigningEKUCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/extKeyUsage/codeSigningEKUCert -------------------------------------------------------------------------------- /tests/libpkix/certs/generalName/altNameDnCert_diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/generalName/altNameDnCert_diff -------------------------------------------------------------------------------- /tests/libpkix/certs/generalName/altNameDnsCert_diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/generalName/altNameDnsCert_diff -------------------------------------------------------------------------------- /tests/libpkix/certs/generalName/altNameEdiCert_diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/generalName/altNameEdiCert_diff -------------------------------------------------------------------------------- /tests/libpkix/certs/generalName/altNameIpCert_diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/generalName/altNameIpCert_diff -------------------------------------------------------------------------------- /tests/libpkix/certs/generalName/altNameOidCert_diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/generalName/altNameOidCert_diff -------------------------------------------------------------------------------- /tests/libpkix/certs/generalName/altNameUriCert_diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/generalName/altNameUriCert_diff -------------------------------------------------------------------------------- /tests/pkcs11/netscape/suites/security/ssl/cert7.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/pkcs11/netscape/suites/security/ssl/cert7.db -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/ciphertext10: -------------------------------------------------------------------------------- 1 | DxD1ma4UoVTtJLNuJTJNuMVmYy7yu7NPg0coD8RQcFf93CnfmkcfdcZlQdTU2tHJ 2 | 6ToZpY6LRz+g8GL3ZdzFf89iOiQJT8ykDTUz+A== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/ciphertext11: -------------------------------------------------------------------------------- 1 | 0n6IaBzjJDxIMBZaj9z5/x3podjmtEfvbve3mChmbkWB55ASrzTd2eLwN1ibKS2z 2 | 5nwDZ0X6Iufptzc73PVm/ykcJbu4Vo/D03am2Q== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/ciphertext15: -------------------------------------------------------------------------------- 1 | Ui3B8JlWfQf0fzejKoRCfWQ6jNy/5cDJdZiivSVV0aqMsI5IWQ27PaewixBWgog4 2 | xfYeY5O6egq8yfZidvxuzg9OF2jN34hTuy1VGw== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/ciphertext16: -------------------------------------------------------------------------------- 1 | w3Yt8cp4fTKuR8E78ZhEy68a4U0Ll2r6xS/315u6neD+tYLTOTSk8JVMwjY7xz94 2 | YqxDDmSr5Jn0fJsfOjN9v0anksReRUkT/i6o8g== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/ciphertext17: -------------------------------------------------------------------------------- 1 | Wo3vLwyeU/H3XXhTZZ4qIO6ysiqv3mQZoFirT290a/QPwMO3gPJERS2j6/HF2Cze 2 | okGJlyAO+C5Ern4/pEqCZu4cjrDItdTPWunxmg== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/ciphertext3: -------------------------------------------------------------------------------- 1 | QoMewiF3dCRLciG3hNDUnOOqIS8sAqTgNcF+IymsoS4h1RSyVGaTHH2PalqshKoF 2 | G6MLOWoKrJc9WOCRW8lPvDIhpduU+ula5xIaRw== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/ciphertext4: -------------------------------------------------------------------------------- 1 | YTU7TCgGk0p3f/UfoipHVWmbKnFPzcb4N2bl+XtsdCNzgGkA5J8ksisJdUTUiWtC 2 | SYm14eusDwfCP0WYNhLS5547B4VWG+FKrKL8yw== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/ciphertext5: -------------------------------------------------------------------------------- 1 | jOJJmGJWFbYDoDOsoT+4lL6REqXDohGouiYqPMp+LKcB5Kmk+6Q8kMzcsoHUjHxv 2 | 1ih10qykFwNMNK7lYZzFrv/+C/pGKvQ8FpnQUA== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/ciphertext9: -------------------------------------------------------------------------------- 1 | OYDKCzwA6EHrBvrEhyonV4WeHOqm79mEYoWTtAyh4Zx9dz0AwUTFJaxhnRjISj9H 2 | GOJEiy/jJNnM2icQJRlJjoDxR483ulW9bSdhjA== 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/key3: -------------------------------------------------------------------------------- 1 | AAAABwYFK4EEAAEAAAArBAe4qW9DTVGRVIYYznwJZbn8mWXLugA2A+Mv112Bu+y7 2 | gxI8E4/fEdLTsQAAABUGEQDNcbxi0JhwALA8FCCxvmWYM3E= 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/key4: -------------------------------------------------------------------------------- 1 | AAAABwYFK4EEAAIAAAArBAXw45Pc59l1QWmAB1W6M30lyFzQmAH/0FIFKYgEOYIa 2 | dnEXMwKNwaRdsQAAABUCErj052f+Rth5OxAm376LOAQyvBY= 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/key5: -------------------------------------------------------------------------------- 1 | AAAABwYFK4EEAA8AAAArBAFhm71N2wsUOYCwDNr/6rFvNX1okAbki1SNlHq2TQDO 2 | Bktd1M0jlApWVQAAABUCILsraWg3Qi5nBsXQ1pGmZk0YuSA= 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/sha384/plaintext1: -------------------------------------------------------------------------------- 1 | abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmnhijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu 2 | -------------------------------------------------------------------------------- /cmd/bltest/tests/sha512/plaintext1: -------------------------------------------------------------------------------- 1 | abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmnhijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu 2 | -------------------------------------------------------------------------------- /tests/libpkix/certs/generalName/altNameOtherCert_diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/generalName/altNameOtherCert_diff -------------------------------------------------------------------------------- /tests/libpkix/certs/generalName/altNameRfc822Cert_diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/generalName/altNameRfc822Cert_diff -------------------------------------------------------------------------------- /tests/libpkix/certs/generalName/altNameRfc822DnsCert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/generalName/altNameRfc822DnsCert -------------------------------------------------------------------------------- /tests/libpkix/certs/generalName/altNameX400Cert_diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/certs/generalName/altNameX400Cert_diff -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/ciphertext14: -------------------------------------------------------------------------------- 1 | Ui3B8JlWfQf0fzejKoRCfWQ6jNy/5cDJdZiivSVV0aqMsI5IWQ27PaewixBWgog4 2 | xfYeY5O6egq8yfZiiYAVrbCU2sXZNHG97BpQInDjzGw= 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/ciphertext2: -------------------------------------------------------------------------------- 1 | QoMewiF3dCRLciG3hNDUnOOqIS8sAqTgNcF+IymsoS4h1RSyVGaTHH2PalqshKoF 2 | G6MLOWoKrJc9WOCRRz9ZhU1cKvMnzWSmLPNavSum+rQ= 3 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/ciphertext8: -------------------------------------------------------------------------------- 1 | OYDKCzwA6EHrBvrEhyonV4WeHOqm79mEYoWTtAyh4Zx9dz0AwUTFJaxhnRjISj9H 2 | GOJEiy/jJNnM2icQrK3iVpkkp8hYcza/sRgCTbhnShQ= 3 | -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/rev_data/crlchecker/sci.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/rev_data/crlchecker/sci.crl -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/key6: -------------------------------------------------------------------------------- 1 | AAAABwYFK4EEAB8AAAAxBHOYACoc9XsLk5n8NZZKV2U9CDoMj/VRDvqbf+myloR7 2 | uBfVNm+uVN33Sa65phAfXQAAABitxs6KZtkqU4tglcdQ1Rmk2U74vjYP0JM= 3 | -------------------------------------------------------------------------------- /tests/libpkix/pkix_pl_tests/pki/rev_data/local/crldiff.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_pl_tests/pki/rev_data/local/crldiff.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_pl_tests/pki/rev_data/local/crlgood.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_pl_tests/pki/rev_data/local/crlgood.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/test1/jes2greg.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/test1/jes2greg.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/test1/jes2jes.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/test1/jes2jes.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/test1/jes2labs.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/test1/jes2labs.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/test2/jes2greg.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/test2/jes2greg.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/test2/jes2jes.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/test2/jes2jes.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/test2/jes2labs.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/test2/jes2labs.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/test3/jes2greg.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/test3/jes2greg.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/test3/jes2jes.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/test3/jes2jes.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/test3/jes2labs.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/test3/jes2labs.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/rev_data/crlchecker/chem.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/rev_data/crlchecker/chem.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/rev_data/crlchecker/phys.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/rev_data/crlchecker/phys.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/rev_data/crlchecker/prof.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/rev_data/crlchecker/prof.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/rev_data/crlchecker/test.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/rev_data/crlchecker/test.crl -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/key7: -------------------------------------------------------------------------------- 1 | AAAACgYIKoZIzj0DAQEAAAAxBOyOI+rIs3x+jsChxQqSVblnoZGqhIM1WX0FMfw+ 2 | D8Dz6Y25iPcAQFpIAWh29FxnrgAAABh+uEQYXwMB783sULxE6PEd1t/MNZ9HSHI= 3 | -------------------------------------------------------------------------------- /tests/libpkix/pkix_pl_tests/module/rev_data/local/crldiff.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_pl_tests/module/rev_data/local/crldiff.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_pl_tests/module/rev_data/local/crlgood.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_pl_tests/module/rev_data/local/crlgood.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_pl_tests/module/rev_data/test_eku_all.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_pl_tests/module/rev_data/test_eku_all.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/test1/greg2yassir.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/test1/greg2yassir.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/test1/labs2yassir.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/test1/labs2yassir.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/test2/labs2yassir.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/test2/labs2yassir.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/test3/labs2yassir.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/test3/labs2yassir.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/rev_data/crlchecker/phy2prof.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/rev_data/crlchecker/phy2prof.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/rev_data/crlchecker/sci2chem.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/rev_data/crlchecker/sci2chem.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/rev_data/crlchecker/sci2phy.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/rev_data/crlchecker/sci2phy.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/rev_data/crlchecker/sci2sci.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/rev_data/crlchecker/sci2sci.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_pl_tests/pki/rev_data/local/issuer-hanfei.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_pl_tests/pki/rev_data/local/issuer-hanfei.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_pl_tests/pki/rev_data/local/issuer-none.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_pl_tests/pki/rev_data/local/issuer-none.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/test1/yassir2hanfei.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/test1/yassir2hanfei.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/test1/yassir2richard.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/test1/yassir2richard.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/test2/nelson2yassir.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/test2/nelson2yassir.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/test2/yassir2hanfei.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/test2/yassir2hanfei.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/test2/yassir2richard.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/test2/yassir2richard.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/test3/nelson2yassir.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/test3/nelson2yassir.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/test3/yassir2hanfei.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/test3/yassir2hanfei.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/rev_data/crlchecker/chem2prof.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/rev_data/crlchecker/chem2prof.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/rev_data/crlchecker/prof2test.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/rev_data/crlchecker/prof2test.crt -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/ciphertext15: -------------------------------------------------------------------------------- 1 | NXo8is+7lAoOwWGt7+GBbT/UX8LGs8TXEHBI+tX9311pJ4J3pfBYobgN0ZK6ZBtp 2 | dS6PkrPaQp0S9nrfTOS5uAH95eD1eymRfCbOnjTUKzLuIn53V17vRjdcDtLzrhzX 3 | -------------------------------------------------------------------------------- /tests/libpkix/pkix_pl_tests/module/rev_data/local/issuer-none.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_pl_tests/module/rev_data/local/issuer-none.crl -------------------------------------------------------------------------------- /tests/libpkix/vfychain_test.lst: -------------------------------------------------------------------------------- 1 | # Status | Leaf Cert | Policies | Others(undef) 2 | 0 TestUser50 undef 3 | 0 TestUser51 undef 4 | 0 PayPalEE OID.2.16.840.1.113733.1.7.23.6 5 | -------------------------------------------------------------------------------- /tests/libpkix/pkix_pl_tests/module/rev_data/local/issuer-hanfei.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_pl_tests/module/rev_data/local/issuer-hanfei.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_pl_tests/module/rev_data/test_eku_clientauth.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_pl_tests/module/rev_data/test_eku_clientauth.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_pl_tests/module/rev_data/test_eku_clientauthEE.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_pl_tests/module/rev_data/test_eku_clientauthEE.crt -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/key8: -------------------------------------------------------------------------------- 1 | AAAABwYFK4EEACAAAAA5BKQnZoj4VtlPqrJ5dekM4haG+7PjfgO4wNNIqD7JnrKI 2 | gTUd+oUQ41d517xCObyBaHNzdVPty9DvAAAAHIrG9+FE+OJV5UV2l/op7PCDPI4G 3 | qkpgzPIwe7U= 4 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/key9: -------------------------------------------------------------------------------- 1 | AAAABwYFK4EEACEAAAA5BGCNDWldzQCbI83PMR96tqR6JnIUpvfIO8l6hIf/QfMc 2 | rx2BbrSLoy6EJmP++Jyw5yNyaoVaNYl6AAAAHDnjgcUSIshTSLuejnSsvtvU363b 3 | 1NJv4ULUbIs= 4 | -------------------------------------------------------------------------------- /tests/common/results_header.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Test Report for NSS 4 | 5 | 6 |

Test Report for NSS

7 | -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/backtracking/signature/greg.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/backtracking/signature/greg.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/backtracking/signature/jes.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/backtracking/signature/jes.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/backtracking/signature/labs.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/backtracking/signature/labs.crl -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/ciphertext16: -------------------------------------------------------------------------------- 1 | ADhxjBz/ACTy4GJlL0tYZpyNpC4DsXND9lJuU7x9N7g6gkpJyBPw3vBYU1olw6PH 2 | dnegpgAm4Gh6MCsZB4KBcLwl1wjt4B3p2eqEqDYn5fiie5f4XuRomvI92jR5Sb+I 3 | nBLCHIppt/Q= 4 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/ciphertext17: -------------------------------------------------------------------------------- 1 | AGhHQ6kfdZRgu1svQTXEIewvFVglnUy6ANPumyUbM14AEfRkCUNa1uzvhV1sbWYj 2 | qT3egQCA9MTjThDNJeDOvvL6hVVOryUv4+C3RtkpQGCtdml+CSsjVTej8h9JbMds 3 | Dme40b2G6fE= 4 | -------------------------------------------------------------------------------- /lib/freebl/mpi/utils/LICENSE: -------------------------------------------------------------------------------- 1 | Within this directory, each of the file listed below is licensed under 2 | the terms given in the file LICENSE-MPL, also in this directory. 3 | 4 | PRIMES 5 | -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/backtracking/signature/jes2jes.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/backtracking/signature/jes2jes.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/backtracking/signature/yassir.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/backtracking/signature/yassir.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/multi_path/signature/fail/greg.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/multi_path/signature/fail/greg.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/multi_path/signature/fail/jes.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/multi_path/signature/fail/jes.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/multi_path/signature/fail/labs.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/multi_path/signature/fail/labs.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/multi_path/signature/pass/greg.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/multi_path/signature/pass/greg.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/multi_path/signature/pass/jes.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/multi_path/signature/pass/jes.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/multi_path/signature/pass/labs.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/multi_path/signature/pass/labs.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/single_path/signature/fail/jes.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/single_path/signature/fail/jes.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/single_path/signature/pass/jes.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/single_path/signature/pass/jes.crl -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/key10: -------------------------------------------------------------------------------- 1 | AAAABwYFK4EEABoAAAA9BACmzalMQJBOWV2FoyV0tXSpT07Xajq4bB1SUwSY7QGn 2 | dgGC3GBqjPs9vEpqfMMQ2M9k3+5oubWnexNFhQAAAB4BRha/6sE7VSHl92ZqCj5p 3 | LYtBpK23jzfdVWO8SAY= 4 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/key11: -------------------------------------------------------------------------------- 1 | AAAABwYFK4EEABsAAAA9BAD2/x9HSYYVEQ9AU4MivlIKPypJjsm0sTrp8BftlQGv 2 | KaYrKpZCg/CEw3C2kqvke7HAu+10hafK9asRxQAAAB4AXyFCurtsXhahkyJpkb5J 3 | LUg3xVL00vviR0KyFZY= 4 | -------------------------------------------------------------------------------- /tests/libpkix/pkix_pl_tests/module/rev_data/test_eku_allbutcodesigningEE.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_pl_tests/module/rev_data/test_eku_allbutcodesigningEE.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/backtracking/signature/jes2greg.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/backtracking/signature/jes2greg.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/backtracking/signature/jes2labs.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/backtracking/signature/jes2labs.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/multi_path/signature/fail/yassir.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/multi_path/signature/fail/yassir.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/multi_path/signature/pass/yassir.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/multi_path/signature/pass/yassir.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/single_path/signature/fail/greg.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/single_path/signature/fail/greg.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/single_path/signature/pass/greg.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/single_path/signature/pass/greg.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_pl_tests/module/rev_data/test_eku_codesigning_clientauth.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_pl_tests/module/rev_data/test_eku_codesigning_clientauth.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/backtracking/signature/labs2yassir.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/backtracking/signature/labs2yassir.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/multi_path/signature/fail/jes2greg.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/multi_path/signature/fail/jes2greg.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/multi_path/signature/fail/jes2jes.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/multi_path/signature/fail/jes2jes.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/multi_path/signature/fail/jes2labs.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/multi_path/signature/fail/jes2labs.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/multi_path/signature/pass/jes2greg.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/multi_path/signature/pass/jes2greg.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/multi_path/signature/pass/jes2jes.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/multi_path/signature/pass/jes2jes.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/multi_path/signature/pass/jes2labs.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/multi_path/signature/pass/jes2labs.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/single_path/signature/fail/jes2greg.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/single_path/signature/fail/jes2greg.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/single_path/signature/fail/jes2jes.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/single_path/signature/fail/jes2jes.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/single_path/signature/fail/yassir.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/single_path/signature/fail/yassir.crl -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/single_path/signature/pass/jes2greg.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/single_path/signature/pass/jes2greg.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/single_path/signature/pass/jes2jes.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/single_path/signature/pass/jes2jes.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/single_path/signature/pass/yassir.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/single_path/signature/pass/yassir.crl -------------------------------------------------------------------------------- /tests/smime/alice.txt: -------------------------------------------------------------------------------- 1 | Date: Wed, 20 Sep 2000 00:00:01 -0700 (PDT) 2 | From: alice@bogus.com 3 | Subject: message Alice --> Bob 4 | To: bob@bogus.com 5 | 6 | This is a test message from Alice to Bob. 7 | -------------------------------------------------------------------------------- /tests/smime/bob.txt: -------------------------------------------------------------------------------- 1 | Date: Wed, 20 Sep 2000 00:00:01 -0700 (PDT) 2 | From: bob@bogus.com 3 | Subject: message Bob --> Alice 4 | To: alice@bogus.com 5 | 6 | This is a test message from Bob to Alice. 7 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/key12: -------------------------------------------------------------------------------- 1 | AAAACgYIKoZIzj0DAQcAAABBBNGB7n4kH15tKA/SMpetaQVqg6WxIuuUuMQT2tDX 2 | NN5jKZfaxD47NsTjTr3x3D5t1qRBYuL6VtdgIuxBIHGG9dcAAAAgaGjyZBL+LN3a 3 | 7NkGiHJBfqh7XKNH0AnPF3vFWpostIQ= 4 | -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/backtracking/signature/yassir2hanfei.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/backtracking/signature/yassir2hanfei.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/multi_path/signature/fail/greg2yassir.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/multi_path/signature/fail/greg2yassir.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/multi_path/signature/fail/labs2yassir.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/multi_path/signature/fail/labs2yassir.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/multi_path/signature/pass/greg2yassir.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/multi_path/signature/pass/greg2yassir.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/multi_path/signature/pass/labs2yassir.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/multi_path/signature/pass/labs2yassir.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/multi_path/signature/fail/yassir2hanfei.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/multi_path/signature/fail/yassir2hanfei.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/multi_path/signature/pass/yassir2hanfei.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/multi_path/signature/pass/yassir2hanfei.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/single_path/signature/fail/yassir2hanfei.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/single_path/signature/fail/yassir2hanfei.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/single_path/signature/pass/greg2yassir.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/single_path/signature/pass/greg2yassir.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/single_path/signature/pass/yassir2hanfei.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/single_path/signature/pass/yassir2hanfei.crt -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/key13: -------------------------------------------------------------------------------- 1 | AAAABwYFK4EEABAAAABJBAT3klWkt7+1Pr6QGEcvEIZplopwt1alrsJUThDOxvUF 2 | 7KvBpQLVjB+DQTwYQnEREb/WFyRgUBuIbII0+zd/g0fLHE4PQ8SNlAAAACQFPsMX 3 | mqSVRreUVasUOIZQFB2jnpwCUyoq+xa9SRril5LeOCY= 4 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/key14: -------------------------------------------------------------------------------- 1 | AAAABwYFK4EEABEAAABJBAf/ei/XCrFrMZLBp5BFkKZ3Odn+ZJu7QIAK32Ubuxmi 2 | xgWTewf2vv+KY5kHwsBYuBXmmnKe9Ak9zGP4Lykvgk5n5J6iUz5ycQAAACQAQHXa 3 | d29OqGxoDNCl9xETW3tAL/2hfZzstNuOPLm5kj4j1Dc= 4 | -------------------------------------------------------------------------------- /lib/freebl/mpi/tests/LICENSE: -------------------------------------------------------------------------------- 1 | Within this directory, each of the file listed below is licensed under 2 | the terms given in the file LICENSE-MPL, also in this directory. 3 | 4 | pi1k.txt 5 | pi2k.txt 6 | pi5k.txt 7 | -------------------------------------------------------------------------------- /tests/README.txt: -------------------------------------------------------------------------------- 1 | Hints for running the NSS test suite: 2 | 3 | - all.sh is used to run all tests 4 | 5 | - if your host is not registered with DNS you may use: 6 | HOST=localhost DOMSUF=localdomain ./all.sh 7 | -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/backtracking/signature/greg2yassir_badsig.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/backtracking/signature/greg2yassir_badsig.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_tests/top/build_data/single_path/signature/fail/greg2yassir_badsig.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/nss/HEAD/tests/libpkix/pkix_tests/top/build_data/single_path/signature/fail/greg2yassir_badsig.crt -------------------------------------------------------------------------------- /tests/libpkix/pkix_pl_tests/pki/rev_data/local/README: -------------------------------------------------------------------------------- 1 | If the total number of CRL files is changed in this directory, 2 | the define PKIX_TEST_COLLECTIONCERTSTORE_NUM_CRLS under the 3 | test directory also need to be changed. -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/ciphertext20: -------------------------------------------------------------------------------- 1 | ALAM5hGnex7TvBbSEzDlfv+n5g7aWyRyZsBbl2Y6wW1plSovbq2GcV6w1ZV1Vlot 2 | 70zbqkKyNApvTi3xoD4Ens6pAeLMYDILwaQhnyJZWQv3etbWqUKJZNgfH1IDj03k 3 | n9hbjYLX3y4bc4CnrhOiv5Ab34s7M8wUYcjC+DbHwhLl/S6N 4 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/ciphertext18: -------------------------------------------------------------------------------- 1 | AGBuqk48tufy0bKEWpu+xEHsmi+6KCfdwOSRwLDnpVetGe9AWknHDzeTSwe0QxcE 2 | RsEkUZGDpxfzUlCLSSSU+ErrYY/uyLV2AJTb3prB6A2YNwdmFGeRbDoxeOu7FuQA 3 | 3gxBQhR+TGMuskeM+BdHFmFrwvTTdHCGzjTBa5S8mbgEJTfeik/it28T/9i+duZ8 4 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/ciphertext19: -------------------------------------------------------------------------------- 1 | AaiotJfCiWU1d2LFe+t0CcWHDSF7EOlApWYJ+RNRSq8TbkXJIzi6abbb7BovtRwf 2 | i/COYwjS7OnkFQ6x5Pdrb7OZ0dTAdDRXAKtXWSKR20Y4fhnx/HUxisFwKrsCEQ3O 3 | uVtwDG8rh5V8zjBnCEcs5Iy9CsklucibR0PIyglVmW+ZuY42YNebuOC2VUKqHNF7 4 | -------------------------------------------------------------------------------- /doc/README: -------------------------------------------------------------------------------- 1 | A convenient tool to edit these files is 2 | https://sourceforge.net/projects/xml-copy-editor/ 3 | 4 | Assuming the documentation text will remain plain US-ASCII, 5 | please disable the option 6 | "Save UTF-8 byte order mark". 7 | 8 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/pqg0: -------------------------------------------------------------------------------- 1 | AAAAQI3ypJRJInaqPSV1m7BoacvqwNg6+40M98u4Mk8NeILl0HYvxbchDq/C6a2s 2 | Mqt6rElpPfv4NyTC7Ac27jHIApEAAAAUx3MhjHN+yO6ZO08t7TD0jtrOkV8AAABA 3 | Ym0CeDnqChNBMWOlW0y1ACmdVSKVbO/LO/8Q85nOLC5xy53l+iS6v1jlt5Uhklyc 4 | xC6fb0ZLCIzFcq9T5teIAg== 5 | -------------------------------------------------------------------------------- /cmd/pk11util/scripts/pLabel1: -------------------------------------------------------------------------------- 1 | NewTemplate certName CKA_LABEL,CKA_VALUE 2 | C_GetAttributeValue session certID[i] certName sizeA(certName) 3 | BuildTemplate certName 4 | C_GetAttributeValue session certID[i] certName sizeA(certName) 5 | print i 6 | print certName[0] 7 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/key15: -------------------------------------------------------------------------------- 1 | AAAABwYFK4EEACIAAABhBLWMJG3t4khPYcsl3H492rAqukJ1RqJm27pqpN54rFGG 2 | r2VDwOfqb9tMninq8IyOh42eaaVOEPXXu4Q/ATWBEfrbTRBjTpzAE2SSPuQma0lM 3 | q0RSVECCgdBOKIhB0H6VxAAAADA3WPjUaMWCS9E5KbVDrEcf5CV5tCNNWJQkwjsA 4 | yALMCiXJqRVXwbq42WMuaELMW+g= 5 | -------------------------------------------------------------------------------- /tests/platformlist: -------------------------------------------------------------------------------- 1 | Darwin6.5 2 | HP-UX_B.11.00_32_bit 3 | HP-UX_B.11.00_64 4 | RH_Linux_7.2_(Enigma) 5 | RH_Linux_7.3_(Valhalla) 6 | RH_Linux_Advanced_Server_2.1AS_(Pensacola) 7 | SunOS_5.8_32_bit 8 | SunOS_5.8_64_bit 9 | Windows-2000 10 | Windows-XP 11 | 12 | -------------------------------------------------------------------------------- /coreconf/IRIX5.2.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | include $(CORE_DEPTH)/coreconf/IRIX5.mk 6 | -------------------------------------------------------------------------------- /coreconf/OSF1V2.0.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | include $(CORE_DEPTH)/coreconf/OSF1.mk 6 | -------------------------------------------------------------------------------- /coreconf/OSF1V3.0.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | include $(CORE_DEPTH)/coreconf/OSF1.mk 6 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/key16: -------------------------------------------------------------------------------- 1 | AAAABwYFK4EEACQAAABpBADkgknFgTPuirxQxFlqIK+vcARWzlpJR+qmyRyQsBiz 2 | Nh6Ws036xUKY9M8LxMIWXFNM6aIA2wxKsBF+HHD6oy27EAJSJOGbke/9F9Kv5AiW 3 | 2RXA4mllUaxCNsuQ36PqUdqv4FeXxWTpAAAANAHTZloqhR0V4bfyaeo2hojcvY3T 4 | NO04ewNryBpsHZ0bhID0EfewYuwQmX00GYNfuV3mJ2w= 5 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/key17: -------------------------------------------------------------------------------- 1 | AAAABwYFK4EEACUAAABpBAAEE/bAmqCjO3FLvN93Q/UjDyDp2sj+F//buuf1hZ0K 2 | 1rSOGXMLcBrqVa8R6UJ57F9/Yc0BCTylpJMXjfCr4eDczG4WOQk+5x8kpKQs5Q9U 3 | V3IolHDiQY/Nhn7o4UFn5/mF71T3qUqwAAAANAH/o7jEl9Bw+Arj9uQ7ZHkoPGgx 4 | t92UJg1r/lxa7UUd66iJfRI8n8yQH/sw56D1+CweeII= 5 | -------------------------------------------------------------------------------- /coreconf/Android.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | include $(CORE_DEPTH)/coreconf/Linux.mk 7 | -------------------------------------------------------------------------------- /coreconf/OSF1V4.0B.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | include $(CORE_DEPTH)/coreconf/OSF1V4.0.mk 6 | -------------------------------------------------------------------------------- /tests/remote/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | CORE_DEPTH = ../.. 6 | DEPTH = ../.. 7 | -------------------------------------------------------------------------------- /cmd/bltest/tests/rsa/key0: -------------------------------------------------------------------------------- 1 | AAAAAAAAACC5lyu2K2ro8YGnvOCKaL1sFX1HEIblIVbuMXsa8oeFSwAAAAERAAAA 2 | IBXVjKwFG6LvPG4WOIjBBzmxGNpkQwDs3W5qZcXVzqahAAAAEOEOH/WnhZCJyM39 3 | oNfhf18AAAAQ0xvmxqXXs3L62xxogUl9lQAAABAaeiHgqkvy4wiQtG1Gkv/tAAAA 4 | EMaw2TNu6SFdKFXAYluQdjEAAAAQi0u+IlgKCt/hatGAsTrfzQ== 5 | -------------------------------------------------------------------------------- /cmd/pk11util/scripts/mechanisms: -------------------------------------------------------------------------------- 1 | Load nsscapi.dll 2 | C_Initialize NULL 3 | C_GetSlotList false NULL slotCount 4 | NewArray slotList CK_ULONG slotCount 5 | C_GetSlotList false slotList slotCount 6 | 7 | LoopRun pMechanisms i 0 slotCount 1 8 | 9 | #C_Finalize 10 | #Unload 11 | 12 | -------------------------------------------------------------------------------- /cmd/pk11util/scripts/pMechanisms: -------------------------------------------------------------------------------- 1 | # 2 | # print the mechanism list for a given token 3 | # 4 | set slotID slotList[i] 5 | C_GetMechanismList slotID NULL mechCount 6 | NewArray mechanismList CK_ULONG mechcount 7 | C_GetMechanismList slotID mechanismList mechCount 8 | print mechanismList 9 | -------------------------------------------------------------------------------- /coreconf/ReliantUNIX5.4.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | include $(CORE_DEPTH)/coreconf/ReliantUNIX.mk 6 | -------------------------------------------------------------------------------- /coreconf/SCOOS5.0.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | include $(CORE_DEPTH)/coreconf/SCO_SV3.2.mk 7 | -------------------------------------------------------------------------------- /lib/ckfw/dbm/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | ifdef BUILD_IDG 7 | DEFINES += -DNSSDEBUG 8 | endif 9 | -------------------------------------------------------------------------------- /lib/freebl/mpi/doc/LICENSE: -------------------------------------------------------------------------------- 1 | Within this directory, each of the file listed below is licensed under 2 | the terms given in the file LICENSE-MPL, also in this directory. 3 | 4 | basecvt.pod 5 | gcd.pod 6 | invmod.pod 7 | isprime.pod 8 | lap.pod 9 | mpi-test.pod 10 | prime.txt 11 | prng.pod 12 | -------------------------------------------------------------------------------- /cmd/smimetools/rules.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | install:: 7 | $(INSTALL) -m 755 $(SCRIPTS) $(SOURCE_BIN_DIR) 8 | -------------------------------------------------------------------------------- /coreconf/IRIX5.3.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | include $(CORE_DEPTH)/coreconf/IRIX5.mk 6 | 7 | OS_CFLAGS += -DIRIX5_3 8 | -------------------------------------------------------------------------------- /tests/pkcs11/netscape/suites/security/pkcs11/rules.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | pk11test.c: pk11test.h pkcs11.h 7 | -------------------------------------------------------------------------------- /cmd/libpkix/pkixrules.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | CORE_DEPTH = $(PKIX_DEPTH)/../../.. 7 | PLAT_DEPTH = $(PKIX_DEPTH)/.. 8 | -------------------------------------------------------------------------------- /cmd/modutil/README: -------------------------------------------------------------------------------- 1 | CRYPTOGRAPHIC MODULE UTILITY (modutil) 2 | VERSION 1.0 3 | =============================================== 4 | 5 | The file specification.html documentats the software. 6 | 7 | The file pk11jar.html documents the PKCS #11 JAR format. 8 | -------------------------------------------------------------------------------- /cmd/modutil/installparse.h: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | #define OPENBRACE 257 6 | #define CLOSEBRACE 258 7 | #define STRING 259 8 | -------------------------------------------------------------------------------- /tests/tools/sign.html: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | Sign this javascriptless page. 7 | 8 | 9 | -------------------------------------------------------------------------------- /cmd/libpkix/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | TARGETS = $(LIBRARY) 7 | SHARED_LIBRARY = 8 | IMPORT_LIBRARY = 9 | PROGRAM = 10 | -------------------------------------------------------------------------------- /coreconf/HP-UXB.10.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | include $(CORE_DEPTH)/coreconf/HP-UX.mk 6 | 7 | OS_CFLAGS += -DHPUX10 8 | OS_LIBS += -lpthread -lm 9 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/key20: -------------------------------------------------------------------------------- 1 | AAAABwYFK4EEACMAAACFBAHLMSpMFVyG6mXE7SZ5O5Bwv4d8/QiAB3BzpXkyrU1W 2 | jJ9O9uOYTXM+cFtF5v56+LsI4yGkaAl9+RF6lFPjrhpIswCmBmEqMBgZpjoz38my 3 | nLHBI9MaFF8AHkRQwD3LJLo4eSZHOVkdIvDYLwicdlgr0zD3Nf76/HB1+0DkBGqE 4 | MyG22gAAAEIAFah7z179UbqqdH68pzdZsP1ChXjtYZ11rBM0+HP7yLirxH3ahKTt 5 | DjsY19GEjz4gKsaLfLiQ1/Dp+VKVLcBKpk0= 6 | -------------------------------------------------------------------------------- /coreconf/IRIX5.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | include $(CORE_DEPTH)/coreconf/IRIX.mk 7 | 8 | ifndef NS_USE_GCC 9 | ODD_CFLAGS += -xgot 10 | endif 11 | -------------------------------------------------------------------------------- /lib/cryptohi/keyt.h: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | #ifndef _KEYT_H_ 6 | #define _KEYT_H_ 7 | 8 | #include "keythi.h" 9 | 10 | #endif /* _KEYT_H_ */ 11 | -------------------------------------------------------------------------------- /tests/pkcs11/netscape/suites/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | CORE_DEPTH = ../../../../.. 6 | 7 | DIRS = security \ 8 | $(NULL) 9 | 10 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/aes_cts_0.txt: -------------------------------------------------------------------------------- 1 | Key: 63 68 69 63 6b 65 6e 20 74 65 72 69 79 61 6b 69 2 | IV: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 3 | Input: 49 20 77 6f 75 6c 64 20 6c 69 6b 65 20 74 68 65 20 4 | Output: 97 c6 35 35 68 f2 bf 8c b4 d8 a5 80 36 2d a7 ff 7f 5 | Next IV: c6 35 35 68 f2 bf 8c b4 d8 a5 80 36 2d a7 ff 7f 6 | 7 | -------------------------------------------------------------------------------- /coreconf/OSF1V4.0D.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | include $(CORE_DEPTH)/coreconf/OSF1V4.0.mk 6 | DEFINES += -DOSF1V4D 7 | 8 | OS_LIBS += -lpthread -lrt 9 | 10 | -------------------------------------------------------------------------------- /tests/pkcs11/netscape/trivial/acconfig.h: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | /* Define to use NSS header files instead of the regular RSA ones */ 6 | #undef WITH_NSS 7 | 8 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/key18: -------------------------------------------------------------------------------- 1 | AAAABwYFK4EEACYAAACRBAffZTrfwIl0dciO2fui3UhZw6r+jnFh7gyER92gXL7+ 2 | LzPgTHagd1vdQiIX4K8Dv76KN0BldiFuX5odP7qC26MUaiURDdWT0AWcPmumSSBH 3 | NXZYLLx5hQjW3BTNwV7v5bmUjezfgtuOCC30dQGs2GMgExAmiWRjTkiPrHg1SFKF 4 | 3RklauOyMWauaVpEzh3c+wAAAEgAZvLs4/Rx7tS+QGH92fGGIxPWPbVYOpDKwabY 5 | poV2i1BD5Fxvw+eHlvxVOLmRPqRCPTfOLwAeNbHyt17U/BVZ8+svTChlzuA= 6 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/key19: -------------------------------------------------------------------------------- 1 | AAAABwYFK4EEACcAAACRBASpPvOfQVqiMD+cBL/nulFit5pk/5beJ6/KpeIltg4s 2 | 6/s7PPggJA59BP7RJwak6rgY3PsRqXVPjyM/1UkUfRUR2BJgOfNTkQe9WF7Y5zXy 3 | TM76cWhOP+sLSoUcscy/HTLCpHqRLLvWZPDzgjrfJqSlydMEDZjWsJRVPk9IfeQ/ 4 | amGiWOhJIQd/bSrAazZn6AAAAEgFz1qZzjHuhuP1boJ7gzndJhQslx1efbESxHSc 5 | wbOpeBpw2MsCAwjtgo3Y8pviFIC8+5MStkFjE8uHQ0ngXc02wm3G0xj8XGQ= 6 | -------------------------------------------------------------------------------- /coreconf/HP-UXA.09.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # 7 | # Config stuff for HP-UXA.09 8 | # 9 | include $(CORE_DEPTH)/coreconf/HP-UX.mk 10 | 11 | OS_CFLAGS += -DHPUX9 12 | -------------------------------------------------------------------------------- /lib/libpkix/pkix_pl_nss/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | CORE_DEPTH = ../../.. 6 | DEPTH = ../../.. 7 | 8 | # 9 | DIRS = pki system module \ 10 | $(NULL) 11 | 12 | -------------------------------------------------------------------------------- /lib/ckfw/nssckg.h: -------------------------------------------------------------------------------- 1 | /* THIS IS A GENERATED FILE */ 2 | /* This Source Code Form is subject to the terms of the Mozilla Public 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 5 | #ifndef NSSCKG_H 6 | #define NSSCKG_H 7 | 8 | #include "pkcs11.h" 9 | 10 | #endif /* NSSCKG_H */ 11 | -------------------------------------------------------------------------------- /lib/ckfw/capi/README: -------------------------------------------------------------------------------- 1 | This Cryptoki module provides acces to certs and keys stored in 2 | Microsofts CAPI certificate store. 3 | 4 | It does not import or export CA Root trust from the CAPI. 5 | It does not import or export CRLs from the CAPI. 6 | It does not handle S/MIME objects (pkcs #7 in capi terms?). 7 | It does not yet handle it's own PIN. (CAPI does all the pin prompting). 8 | -------------------------------------------------------------------------------- /manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | CORE_DEPTH = . 6 | DEPTH = . 7 | 8 | IMPORTS = nspr20/v4.8 \ 9 | $(NULL) 10 | 11 | RELEASE = nss 12 | 13 | DIRS = coreconf lib cmd 14 | -------------------------------------------------------------------------------- /cmd/p7env/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | CORE_DEPTH = ../.. 7 | 8 | MODULE = nss 9 | 10 | CSRCS = p7env.c 11 | 12 | REQUIRES = seccmd 13 | 14 | PROGRAM = p7env 15 | 16 | -------------------------------------------------------------------------------- /cmd/p7sign/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | CORE_DEPTH = ../.. 7 | 8 | MODULE = nss 9 | 10 | CSRCS = p7sign.c 11 | 12 | REQUIRES = seccmd 13 | 14 | PROGRAM = p7sign 15 | 16 | -------------------------------------------------------------------------------- /lib/ckfw/dbm/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | include manifest.mn 7 | include config.mk 8 | include $(CORE_DEPTH)/coreconf/config.mk 9 | include $(CORE_DEPTH)/coreconf/rules.mk 10 | -------------------------------------------------------------------------------- /lib/ckfw/nssckepv.h: -------------------------------------------------------------------------------- 1 | /* THIS IS A GENERATED FILE */ 2 | /* This Source Code Form is subject to the terms of the Mozilla Public 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 5 | #ifndef NSSCKEPV_H 6 | #define NSSCKEPV_H 7 | 8 | #include "pkcs11.h" 9 | 10 | #endif /* NSSCKEPV_H */ 11 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/mktst.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | for i in 0 1 2 3 4 5 3 | do 4 | file="aes_cts_$i.txt" 5 | grep "Key" $file | sed -e 's;Key:;;' | hex > key$i 6 | grep "IV" $file | sed -e 's;IV:;;' | hex > iv$i 7 | grep "Input" $file | sed -e 's;Input:;;' | hex > plaintext$i 8 | grep "Output" $file | sed -e 's;Output:;;' | hex | btoa > ciphertext$i 9 | done 10 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/key0: -------------------------------------------------------------------------------- 1 | AAAAQI3ypJRJInaqPSV1m7BoacvqwNg6+40M98u4Mk8NeILl0HYvxbchDq/C6a2s 2 | Mqt6rElpPfv4NyTC7Ac27jHIApEAAAAUx3MhjHN+yO6ZO08t7TD0jtrOkV8AAABA 3 | Ym0CeDnqChNBMWOlW0y1ACmdVSKVbO/LO/8Q85nOLC5xy53l+iS6v1jlt5Uhklyc 4 | xC6fb0ZLCIzFcq9T5teIAgAAAEAZExhx11sWEqgZ8p140bDXNG96p3u2KoWb/WxW 5 | ddqdIS06Nu8Wcu9mC4x8JVzA7HSFj7oz9EwGaZYwp2sDDuMzAAAAFCBwsyI9ujcv 6 | 3hwP/HsuO0mLJgYU 7 | -------------------------------------------------------------------------------- /cmd/ocspresp/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | CORE_DEPTH = ../.. 7 | 8 | MODULE = nss 9 | 10 | CSRCS = ocspresp.c 11 | 12 | REQUIRES = seccmd 13 | 14 | PROGRAM = ocspresp 15 | 16 | -------------------------------------------------------------------------------- /cmd/p7verify/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | CORE_DEPTH = ../.. 7 | 8 | MODULE = nss 9 | 10 | CSRCS = p7verify.c 11 | 12 | REQUIRES = seccmd 13 | 14 | PROGRAM = p7verify 15 | 16 | -------------------------------------------------------------------------------- /cmd/pk1sign/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | CORE_DEPTH = ../.. 7 | 8 | MODULE = nss 9 | 10 | CSRCS = pk1sign.c 11 | 12 | REQUIRES = seccmd 13 | 14 | PROGRAM = pk1sign 15 | 16 | -------------------------------------------------------------------------------- /tests/pkcs11/netscape/suites/security/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | CORE_DEPTH = ../../../../../.. 6 | 7 | #MODULE = sectools 8 | 9 | DIRS = pkcs11 \ 10 | ssl \ 11 | $(NULL) 12 | 13 | -------------------------------------------------------------------------------- /cmd/p7content/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | CORE_DEPTH = ../.. 7 | 8 | MODULE = nss 9 | 10 | CSRCS = p7content.c 11 | 12 | REQUIRES = seccmd 13 | 14 | PROGRAM = p7content 15 | 16 | -------------------------------------------------------------------------------- /lib/ckfw/nssckft.h: -------------------------------------------------------------------------------- 1 | /* THIS IS A GENERATED FILE */ 2 | /* This Source Code Form is subject to the terms of the Mozilla Public 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 5 | 6 | #ifndef _NSSCKFT_H_ 7 | #define _NSSCKFT_H_ 1 8 | 9 | #include "pkcs11t.h" 10 | 11 | #endif /* _NSSCKFT_H_ */ 12 | -------------------------------------------------------------------------------- /cmd/listsuites/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | CORE_DEPTH = ../.. 7 | 8 | MODULE = nss 9 | 10 | CSRCS = listsuites.c 11 | 12 | REQUIRES = seccmd 13 | 14 | PROGRAM = listsuites 15 | 16 | -------------------------------------------------------------------------------- /coreconf/IRIX6.3.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # catch unresolved symbols 7 | 8 | SHLIB_LD_OPTS += -no_unresolved 9 | 10 | include $(CORE_DEPTH)/coreconf/IRIX6.mk 11 | 12 | OS_CFLAGS += -DIRIX6_3 13 | -------------------------------------------------------------------------------- /lib/jar/Makefile: -------------------------------------------------------------------------------- 1 | #! gmake 2 | # 3 | # This Source Code Form is subject to the terms of the Mozilla Public 4 | # License, v. 2.0. If a copy of the MPL was not distributed with this 5 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 | 7 | include manifest.mn 8 | include $(CORE_DEPTH)/coreconf/config.mk 9 | include config.mk 10 | include $(CORE_DEPTH)/coreconf/rules.mk 11 | 12 | -------------------------------------------------------------------------------- /lib/libpkix/pkix/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | CORE_DEPTH = ../../.. 6 | DEPTH = ../../.. 7 | 8 | # 9 | DIRS = certsel crlsel checker params results store top util \ 10 | $(NULL) 11 | 12 | -------------------------------------------------------------------------------- /cmd/pk11mode/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | CORE_DEPTH = ../.. 7 | 8 | MODULE = nss 9 | 10 | EXPORTS = 11 | 12 | CSRCS = pk11mode.c 13 | 14 | PROGRAM = pk11mode 15 | 16 | REQUIRES = seccmd 17 | -------------------------------------------------------------------------------- /cmd/pkix-errcodes/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | CORE_DEPTH = ../.. 7 | 8 | MODULE = nss 9 | 10 | CSRCS = pkix-errcodes.c 11 | 12 | REQUIRES = seccmd 13 | 14 | PROGRAM = pkix-errcodes 15 | 16 | -------------------------------------------------------------------------------- /coreconf/IRIX6.2.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | 7 | # catch unresolved symbols 8 | 9 | SHLIB_LD_OPTS += -no_unresolved 10 | 11 | include $(CORE_DEPTH)/coreconf/IRIX6.mk 12 | 13 | OS_CFLAGS += -DIRIX6_2 14 | -------------------------------------------------------------------------------- /cmd/libpkix/pkix_pl/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | PKIX_DEPTH = ./.. 7 | PLAT_DEPTH = $(PKIX_DEPTH)/.. 8 | CORE_DEPTH = $(PKIX_DEPTH)/../../.. 9 | 10 | DIRS = module pki system \ 11 | $(NULL) 12 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/test0.txt: -------------------------------------------------------------------------------- 1 | test="Test Case 1" 2 | K=00000000000000000000000000000000 3 | P= 4 | IV=000000000000000000000000 5 | H=66e94bd4ef8a2c3b884cfa59ca342b2e 6 | Y0=00000000000000000000000000000001 7 | E(K,Y0)=58e2fccefa7e3061367f1d57a4e7455a 8 | len(A)||len(C)=00000000000000000000000000000000 9 | GHASH(H,A,C)=00000000000000000000000000000000 10 | C= 11 | T=58e2fccefa7e3061367f1d57a4e7455a 12 | -------------------------------------------------------------------------------- /lib/base/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | include manifest.mn 7 | include $(CORE_DEPTH)/coreconf/config.mk 8 | include config.mk 9 | include $(CORE_DEPTH)/coreconf/rules.mk 10 | 11 | export:: private_export 12 | -------------------------------------------------------------------------------- /lib/pki/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | include manifest.mn 7 | include $(CORE_DEPTH)/coreconf/config.mk 8 | include config.mk 9 | include $(CORE_DEPTH)/coreconf/rules.mk 10 | 11 | export:: private_export 12 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_ctr/mktst.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | for i in 0 1 2 3 | do 4 | file="aes_ctr_$i.txt" 5 | grep Key $file | sed -e 's;Key=;;' | hex > key$i 6 | grep "Init. Counter" $file | sed -e 's;Init. Counter=;;' | hex > iv$i 7 | grep "Ciphertext" $file | sed -e 's;Ciphertext=;;' | hex | btoa > ciphertext$i 8 | grep "Plaintext" $file | sed -e 's;Plaintext=;;' | hex > plaintext$i 9 | done 10 | -------------------------------------------------------------------------------- /lib/cryptohi/key.h: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | /* This header is deprecated. Please include keyhi.h instead. */ 6 | 7 | #ifndef _KEY_H_ 8 | #define _KEY_H_ 9 | 10 | #include "keyhi.h" 11 | 12 | #endif /* _KEY_H_ */ 13 | -------------------------------------------------------------------------------- /tests/pkcs11/netscape/suites/security/ssl/README: -------------------------------------------------------------------------------- 1 | 2 | sslt.rep : Replacer specfile 3 | sslt.c : Main source code file for test 4 | sslt.htp : Replacer template for header file 5 | sslt.h : Replacer-generated header file 6 | sslc.c : Ciphersuite-related data structures and code 7 | ssls.c : Data buffer for transmitting data 8 | ssls.h : Data structures and defines for the main code 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /cmd/libpkix/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | PKIX_DEPTH = . 7 | PLAT_DEPTH = $(PKIX_DEPTH)/.. 8 | CORE_DEPTH = $(PKIX_DEPTH)/../.. 9 | 10 | DIRS = testutil pkix_pl pkix sample_apps perf pkixutil \ 11 | $(NULL) 12 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/test6.txt: -------------------------------------------------------------------------------- 1 | test="Test Case 7" 2 | K=000000000000000000000000000000000000000000000000 3 | P= 4 | IV=000000000000000000000000 5 | H=aae06992acbf52a3e8f4a96ec9300bd7 6 | Y0=00000000000000000000000000000001 7 | E(K,Y0)=cd33b28ac773f74ba00ed1f312572435 8 | len(A)||len(C)=00000000000000000000000000000000 9 | GHASH(H,A,C)=00000000000000000000000000000000 10 | C= 11 | T=cd33b28ac773f74ba00ed1f312572435 12 | -------------------------------------------------------------------------------- /cmd/makepqg/testit.ksh: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | COUNTER=75 7 | while [ $COUNTER -ge "1" ] 8 | do 9 | COUNTER=$(eval expr $COUNTER - 1) 10 | echo $COUNTER 11 | */makepqg.exe -r -l 640 -g 160 || exit 1 12 | done 13 | 14 | -------------------------------------------------------------------------------- /coreconf/HP-UXB.10.01.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | ifeq ($(OS_RELEASE),B.10.01) 6 | DEFAULT_IMPL_STRATEGY = _CLASSIC 7 | endif 8 | 9 | # 10 | # Config stuff for HP-UXB.10.01 11 | # 12 | include $(CORE_DEPTH)/coreconf/HP-UXB.10.mk 13 | -------------------------------------------------------------------------------- /lib/dbm/manifest.mn: -------------------------------------------------------------------------------- 1 | #! gmake 2 | # 3 | # This Source Code Form is subject to the terms of the Mozilla Public 4 | # License, v. 2.0. If a copy of the MPL was not distributed with this 5 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 | 7 | CORE_DEPTH = ../.. 8 | 9 | MODULE = dbm 10 | 11 | IMPORTS = nspr20/v4.4.1 12 | 13 | RELEASE = dbm 14 | 15 | DIRS = include \ 16 | src \ 17 | $(NULL) 18 | -------------------------------------------------------------------------------- /tests/tools/signjs.html: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 9 | Here's some plain content. 10 | 11 | 12 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/aes_cts_1.txt: -------------------------------------------------------------------------------- 1 | Key: 63 68 69 63 6b 65 6e 20 74 65 72 69 79 61 6b 69 2 | IV: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 3 | Input: 49 20 77 6f 75 6c 64 20 6c 69 6b 65 20 74 68 65 20 47 65 6e 65 72 61 6c 20 47 61 75 27 73 20 4 | Output: 97 68 72 68 d6 ec cc c0 c0 7b 25 e2 5e cf e5 fc 00 78 3e 0e fd b2 c1 d4 45 d4 c8 ef f7 ed 22 5 | Next IV: fc 00 78 3e 0e fd b2 c1 d4 45 d4 c8 ef f7 ed 22 6 | 7 | -------------------------------------------------------------------------------- /cmd/libpkix/pkix/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | PKIX_DEPTH = .. 7 | PLAT_DEPTH = $(PKIX_DEPTH)/.. 8 | CORE_DEPTH = $(PKIX_DEPTH)/../../.. 9 | 10 | DIRS = certsel checker crlsel params results store top util \ 11 | $(NULL) 12 | -------------------------------------------------------------------------------- /cmd/multinit/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | CORE_DEPTH = ../.. 7 | 8 | # MODULE public and private header directories are implicitly REQUIRED. 9 | MODULE = nss 10 | 11 | CSRCS = multinit.c 12 | 13 | PROGRAM = multinit 14 | -------------------------------------------------------------------------------- /lib/softoken/sftkdbt.h: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | #ifndef SFTKDBT_H 6 | #define SFTKDBT_H 1 7 | typedef struct SFTKDBHandleStr SFTKDBHandle; 8 | 9 | #define SDB_MAX_META_DATA_LEN 256 10 | #define SDB_ULONG_SIZE 4 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/pqg1: -------------------------------------------------------------------------------- 1 | AAAAgKj5zSAeXjXYkvhfgOTbJZmlZ2o7HU8ZAzDtMlaybQ6AoOSaj/+qrSok9HLS 2 | VzJB1NbWx0gMgLTGe7RHnBWtp+qEJNJQL6AUcudgJBcT2rAlrhsC4XA6FDX2Ld9O 3 | 5MG2ZAZusi8uO/KLtwoqduT9Xr4tEiloG1sGQ5rJx+nYveKDAAAAFPhfD4OsTffq 4 | DN+PRpv+6uoUFWSVAAAAgCsxUv9sYvFGIrj0jln4r0aIOzjnm4x03urp3xMfi4Vu 5 | OtbIRV2rh8wNqKyXNBfOT3h4VX1s30CzW0oMo+sxDGqV1ozihK1OJeooWRYR7gi4 6 | REvWSyXz98VyQQ3fs5zHKLnJNvhfQZEphpkpzbkJpqOpm74IkhY2gXG9C6gd5P4z 7 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/pqg2: -------------------------------------------------------------------------------- 1 | AAAAgIubMvW6OPqtXg1QbrVVVA0NeWMZVVjKMIt0ZiKNkqF7OxS44Kt3qfOylZoJ 2 | hIqmn435LNnp7e8K33ks53v87Mrdk1JwDKX67PGB+gwybbHW5dNSRYAR5RvTJI9O 3 | O9fIINfgqBkyrKHro5AXXlPq2hlyI2dOOQAmPpD3LZTnRHv/AAAAFLxVDpZWR/s6 4 | IPJF7IR1Ykq7sm7dAAAAgBEzOpMfulA0h3dzdoWf3BL3xoewlIroidKH8benEq0i 5 | CuTxzjedDbtcmr9BliHwBfwSPDJ+UFXRhQY0w205fmieER1ZjBw2NrlAyE9C9DaE 6 | bo5/ytkBLO2jmHIPMv/9GkWrYTbOQXBpIHrBQGdbj4bdBjkVrm9isM7HKfvVCawX 7 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/pqg3: -------------------------------------------------------------------------------- 1 | AAAAgMuhPlM2N8N8DoDZ/NBSweQaiKwyXE6+E7cXAIjVTu9IgfPTXq5HwhA4WoSF 2 | 0kI6ZNo//aY6Jvks9aME85JgOEqbd1nYrBrcgdP4v8XmyxDvtOD3WGf06EjRozhY 3 | bdBkj+6xY2R//nF2F0NwVA7oqPWI2ozBQ9k59wsRSn+YG4SDAAAAFJUDG4qnHynV 4 | Jbdz74t8ZwGtil2ZAAAAgEW8qkQ9TNFgLSeq+EEm7cc713Pebs4V6X5/70bxMHK3 5 | rcr3sAU89HBpRN+MRWjybJl+53UwAPvkd6N3ZqTpcP9AAI65ALneS1+a4G4G22EG 6 | 54cR86Z/7KdN1b3c32da5AFO6UiaQpF/vuO7nyok32dRLBw1yXv78jCOqs0oNoxc 7 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/pqg4: -------------------------------------------------------------------------------- 1 | AAAAgPJKSvxyx+Nzo8MJYjMv5UBcRZMJY5CUGMMHkqrxNd3qVh6U8kcmcWt1oYgo 2 | mC5M5Ewf3ct0ZIe2t3qaWhf4aKtQzWIbW8naRwiAsofXOYGQpCpe4i7Y0f8UfiAZ 3 | gQyCmO1o4cpp1B1VXySeZJ+xcl3bB1wXs3vv9Gf90WCSQzc/AAAAFNoGWgeN21bu 4 | XSrQbK+rIIINLEdVAAAAgEe1WRt5BD5OA8p4oOJ3yaIeKmtUO/TwRBBM2ayT7/jh 5 | AbtgMe/IxZbV0vkuOj0PH3RwLdVPd9PNRsBN7npd6fAK0xdpH93O/koiCiZRrK5/ 6 | zt2pK/zKhV22cF6Nhk+Bkr9r+GDADwitZJPswYcuACjVyG1EUF21dCJRXDglpveK 7 | -------------------------------------------------------------------------------- /cmd/bltest/tests/dsa/pqg5: -------------------------------------------------------------------------------- 1 | AAAAgIjZaOlgLsvabYb3yXCj/76x2pYvKMCvuScO8FvDMMqYw634PAcv6wX7Lik7 2 | UGW7sMvMkwwk2NB4ad6uzZKiYEwPXdNcW0Mf2moiLFLDViv3VxxxAgm+izuFiBh4 3 | hyX+gRK31ryC4P8cu/XW/pRpCvK1EOQa2CB9wsAvufpc76q1AAAAFKZlaJueW5zo 4 | L9FnYAbPTPZ+zFa3AAAAgCZ+KChXQXdSET+6P8pxVbXOiefIozwaKRIuK3IJZfwE 5 | JFJn/4f8Z6VzD+WzCAE6oyZpkPuzmBhah+BVtEOoaM4M4TrmruMwudJdO7s2JmXF 6 | iB2vDFqnXp1KgujwTJGprSlIIuM5eKsME/rcRYMfnTfaTvoPwsXrATcfqFt92x+C 7 | -------------------------------------------------------------------------------- /cmd/bltest/tests/ecdsa/README: -------------------------------------------------------------------------------- 1 | 0 secp160k1 2 | 1 secp160r1 3 | 2 secp160r2 4 | 3 nistk163 5 | 4 sect163r1 6 | 5 nistb163 7 | 6 secp192k1 8 | 7 nistp192 9 | 8 secp224k1 10 | 9 nistp224 11 | 10 nistk233 12 | 11 nistb233 13 | 12 nistp256 14 | 13 nistk283 15 | 14 nistb283 16 | 15 nistp384 17 | 16 nistk409 18 | 17 nistb409 19 | 18 nistk571 20 | 19 nistb571 21 | # the following tests are not yet implemented 22 | #20 nistp521 23 | -------------------------------------------------------------------------------- /cmd/makepqg/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | CORE_DEPTH = ../.. 7 | 8 | MODULE = nss 9 | 10 | REQUIRES = dbm 11 | 12 | # DIRS = 13 | 14 | CSRCS = makepqg.c 15 | 16 | PROGRAM = makepqg 17 | 18 | #USE_STATIC_LIBS = 1 19 | 20 | -------------------------------------------------------------------------------- /coreconf/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | DEPTH = .. 6 | CORE_DEPTH = .. 7 | 8 | MODULE = coreconf 9 | 10 | DIRS = nsinstall 11 | 12 | include $(DEPTH)/coreconf/config.mk 13 | include $(DEPTH)/coreconf/rules.mk 14 | 15 | export:: libs 16 | -------------------------------------------------------------------------------- /lib/smime/smimesym.c: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | extern void SEC_PKCS7DecodeItem(); 6 | extern void SEC_PKCS7DestroyContentInfo(); 7 | 8 | smime_CMDExports() { 9 | SEC_PKCS7DecodeItem(); 10 | SEC_PKCS7DestroyContentInfo(); 11 | } 12 | 13 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_cts/aes_cts_2.txt: -------------------------------------------------------------------------------- 1 | Key: 63 68 69 63 6b 65 6e 20 74 65 72 69 79 61 6b 69 2 | IV: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 3 | Input: 49 20 77 6f 75 6c 64 20 6c 69 6b 65 20 74 68 65 20 47 65 6e 65 72 61 6c 20 47 61 75 27 73 20 43 4 | Output: 97 68 72 68 d6 ec cc c0 c0 7b 25 e2 5e cf e5 84 39 31 25 23 a7 86 62 d5 be 7f cb cc 98 eb f5 a8 5 | Next IV: 39 31 25 23 a7 86 62 d5 be 7f cb cc 98 eb f5 a8 6 | 7 | -------------------------------------------------------------------------------- /cmd/bltest/tests/aes_gcm/test12.txt: -------------------------------------------------------------------------------- 1 | test="Test Case 13" 2 | K=0000000000000000000000000000000000000000000000000000000000000000 3 | P= 4 | IV=000000000000000000000000 5 | H=dc95c078a2408989ad48a21492842087 6 | Y0=00000000000000000000000000000001 7 | E(K,Y0)=530f8afbc74536b9a963b4f1c4cb738b 8 | len(A)||len(C)=00000000000000000000000000000000 9 | GHASH(H,A,C)=00000000000000000000000000000000 10 | C= 11 | T=530f8afbc74536b9a963b4f1c4cb738b 12 | -------------------------------------------------------------------------------- /lib/ckfw/ckt.h: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | /* get back to just one set of PKCS #11 headers. Use the onese that 6 | * are easiest to maintain from the RSA website */ 7 | /* this one is the one that defines NSS specific data */ 8 | #include "pkcs11n.h" 9 | -------------------------------------------------------------------------------- /lib/ckfw/nssckt.h: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | #ifndef _NSSCKT_H_ 5 | #define _NSSCKT_H_ 1 6 | 7 | #include "pkcs11t.h" 8 | 9 | typedef CK_ATTRIBUTE_TYPE CK_PTR CK_ATTRIBUTE_TYPE_PTR; 10 | #define CK_ENTRY 11 | 12 | #endif /* _NSSCKT_H_ */ 13 | 14 | -------------------------------------------------------------------------------- /lib/util/nsslocks.h: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | /* 6 | * nsslocks.h - threadsafe functions to initialize lock pointers. 7 | * 8 | * NOTE - The interfaces formerly in this header were private and are now all 9 | * obsolete. 10 | */ 11 | -------------------------------------------------------------------------------- /cmd/smimetools/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | CORE_DEPTH = ../.. 7 | 8 | MODULE = nss 9 | 10 | CSRCS = cmsutil.c 11 | 12 | MYLIB = $(DIST)/lib/libsmime.a 13 | 14 | REQUIRES = seccmd dbm 15 | 16 | PROGRAM = cmsutil 17 | SCRIPTS = smime 18 | -------------------------------------------------------------------------------- /coreconf/IRIX6.5.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # catch unresolved symbols 7 | 8 | SHLIB_LD_OPTS += -no_unresolved 9 | 10 | include $(CORE_DEPTH)/coreconf/IRIX6.mk 11 | 12 | OS_CFLAGS += -DIRIX6_5 13 | ifndef NS_USE_GCC 14 | OS_CFLAGS += -mips3 15 | endif 16 | -------------------------------------------------------------------------------- /coreconf/WIN95.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # 7 | # Config stuff for OS_TARGET=WIN95 8 | # 9 | 10 | include $(CORE_DEPTH)/coreconf/WIN32.mk 11 | 12 | DEFINES += -DWIN95 13 | 14 | # WINNT uses the lib prefix, Win95 doesn't 15 | NSPR31_LIB_PREFIX = $(NULL) 16 | -------------------------------------------------------------------------------- /tests/nsspath: -------------------------------------------------------------------------------- 1 | #! /bin/tcsh 2 | 3 | set PWD=`pwd` 4 | source /u/sonmi/bin/nssdir $* 5 | set OBJDIR=`(cd mozilla/security/nss/tests/common; gmake objdir_name)` 6 | setenv PATH `perl /u/sonmi/bin/path_uniq -s "${PATH}:${UXDIST}/${OBJDIR}/bin"` 7 | if ( `uname -n` == "iws-perf" ) then 8 | setenv LD_LIBRARY_PATH "${UXDIST}/${OBJDIR}/lib:/opt/nfast/toolkits/pkcs11" 9 | else 10 | setenv LD_LIBRARY_PATH "${UXDIST}/${OBJDIR}/lib" 11 | endif 12 | cd $PWD 13 | -------------------------------------------------------------------------------- /cmd/pk11gcmtest/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | CORE_DEPTH = ../.. 7 | 8 | MODULE = nss 9 | 10 | PROGRAM = pk11gcmtest 11 | 12 | EXPORTS = \ 13 | $(NULL) 14 | 15 | PRIVATE_EXPORTS = \ 16 | $(NULL) 17 | 18 | CSRCS = \ 19 | pk11gcmtest.c \ 20 | $(NULL) 21 | -------------------------------------------------------------------------------- /lib/freebl/ec.h: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | 5 | #ifndef __ec_h_ 6 | #define __ec_h_ 7 | 8 | #define EC_DEBUG 0 9 | 10 | #define ANSI_X962_CURVE_OID_TOTAL_LEN 10 11 | #define SECG_CURVE_OID_TOTAL_LEN 7 12 | 13 | #endif /* __ec_h_ */ 14 | -------------------------------------------------------------------------------- /lib/libpkix/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | CORE_DEPTH = ../.. 6 | DEPTH = ../.. 7 | 8 | # 9 | DIRS = include pkix pkix_pl_nss \ 10 | $(NULL) 11 | 12 | # This part of the code, including all sub-dirs, can be optimized for size 13 | export ALLOW_OPT_CODE_SIZE = 1 14 | -------------------------------------------------------------------------------- /lib/sysinit/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | CORE_DEPTH = ../.. 7 | 8 | # MODULE public and private header directories are implicitly REQUIRED. 9 | MODULE = nss 10 | 11 | CSRCS = nsssysinit.c 12 | 13 | LIBRARY_NAME = nsssysinit 14 | #LIBRARY_VERSION = 3 15 | 16 | -------------------------------------------------------------------------------- /cmd/lib/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # 7 | # Override TARGETS variable so that only static libraries 8 | # are specifed as dependencies within rules.mk. 9 | # 10 | 11 | TARGETS = $(LIBRARY) 12 | SHARED_LIBRARY = 13 | IMPORT_LIBRARY = 14 | PROGRAM = 15 | 16 | -------------------------------------------------------------------------------- /lib/pkcs7/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # 7 | # Override TARGETS variable so that only static libraries 8 | # are specifed as dependencies within rules.mk. 9 | # 10 | 11 | TARGETS = $(LIBRARY) 12 | SHARED_LIBRARY = 13 | IMPORT_LIBRARY = 14 | PROGRAM = 15 | -------------------------------------------------------------------------------- /cmd/crmftest/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # 7 | # Override TARGETS variable so that only static libraries 8 | # are specifed as dependencies within rules.mk. 9 | # 10 | 11 | TARGETS = $(PROGRAM) 12 | SHARED_LIBRARY = 13 | IMPORT_LIBRARY = 14 | LIBRARY = 15 | 16 | -------------------------------------------------------------------------------- /lib/certdb/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # 7 | # Override TARGETS variable so that only static libraries 8 | # are specifed as dependencies within rules.mk. 9 | # 10 | 11 | TARGETS = $(LIBRARY) 12 | SHARED_LIBRARY = 13 | IMPORT_LIBRARY = 14 | PROGRAM = 15 | 16 | -------------------------------------------------------------------------------- /lib/certhigh/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # 7 | # Override TARGETS variable so that only static libraries 8 | # are specifed as dependencies within rules.mk. 9 | # 10 | 11 | TARGETS = $(LIBRARY) 12 | SHARED_LIBRARY = 13 | IMPORT_LIBRARY = 14 | PROGRAM = 15 | 16 | -------------------------------------------------------------------------------- /lib/cryptohi/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # 7 | # Override TARGETS variable so that only static libraries 8 | # are specifed as dependencies within rules.mk. 9 | # 10 | 11 | TARGETS = $(LIBRARY) 12 | SHARED_LIBRARY = 13 | IMPORT_LIBRARY = 14 | PROGRAM = 15 | 16 | -------------------------------------------------------------------------------- /lib/pk11wrap/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # 7 | # Override TARGETS variable so that only static libraries 8 | # are specifed as dependencies within rules.mk. 9 | # 10 | 11 | TARGETS = $(LIBRARY) 12 | SHARED_LIBRARY = 13 | IMPORT_LIBRARY = 14 | PROGRAM = 15 | 16 | -------------------------------------------------------------------------------- /tests/cipher/hash.txt: -------------------------------------------------------------------------------- 1 | # This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | # 5 | # This file enables test coverage of the cryptographic hash performance tests 6 | # 7 | # 8 | # mode bufsize repetitions 9 | md2 10240 5000 10 | md5 10240 100000 11 | sha1 10240 100000 12 | -------------------------------------------------------------------------------- /coreconf/IRIX6.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | include $(CORE_DEPTH)/coreconf/IRIX.mk 7 | 8 | ifndef NS_USE_GCC 9 | ifneq ($(USE_N32),1) 10 | OS_CFLAGS += -32 11 | endif 12 | ODD_CFLAGS += -multigot 13 | endif 14 | 15 | ifeq ($(USE_PTHREADS),1) 16 | OS_LIBS += -lpthread 17 | endif 18 | -------------------------------------------------------------------------------- /lib/crmf/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | 7 | # 8 | # Override TARGETS variable so that only static libraries 9 | # are specifed as dependencies within rules.mk. 10 | # 11 | 12 | TARGETS = $(LIBRARY) 13 | SHARED_LIBRARY = 14 | IMPORT_LIBRARY = 15 | PROGRAM = 16 | 17 | -------------------------------------------------------------------------------- /lib/libpkix/pkix/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # 7 | # Override TARGETS variable so that only static libraries 8 | # are specifed as dependencies within rules.mk. 9 | # 10 | 11 | TARGETS = $(LIBRARY) 12 | SHARED_LIBRARY = 13 | IMPORT_LIBRARY = 14 | PROGRAM = 15 | 16 | -------------------------------------------------------------------------------- /lib/pkcs12/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | 7 | # 8 | # Override TARGETS variable so that only static libraries 9 | # are specifed as dependencies within rules.mk. 10 | # 11 | 12 | TARGETS = $(LIBRARY) 13 | SHARED_LIBRARY = 14 | IMPORT_LIBRARY = 15 | PROGRAM = 16 | 17 | -------------------------------------------------------------------------------- /cmd/crmf-cgi/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | 7 | # 8 | # Override TARGETS variable so that only static libraries 9 | # are specifed as dependencies within rules.mk. 10 | # 11 | 12 | TARGETS = $(PROGRAM) 13 | SHARED_LIBRARY = 14 | IMPORT_LIBRARY = 15 | LIBRARY = 16 | 17 | -------------------------------------------------------------------------------- /cmd/lib/ffs.c: -------------------------------------------------------------------------------- 1 | /* This Source Code Form is subject to the terms of the Mozilla Public 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 | #if !defined(XP_UNIX) && !defined(XP_OS2) 5 | 6 | int ffs( unsigned int i) 7 | { 8 | int rv = 1; 9 | 10 | if (!i) return 0; 11 | 12 | while (!(i & 1)) { 13 | i >>= 1; 14 | ++rv; 15 | } 16 | 17 | return rv; 18 | } 19 | #endif 20 | -------------------------------------------------------------------------------- /lib/libpkix/include/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # 7 | # Override TARGETS variable so that only static libraries 8 | # are specifed as dependencies within rules.mk. 9 | # 10 | 11 | TARGETS = $(LIBRARY) 12 | SHARED_LIBRARY = 13 | IMPORT_LIBRARY = 14 | PROGRAM = 15 | 16 | -------------------------------------------------------------------------------- /lib/libpkix/pkix/store/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # 7 | # Override TARGETS variable so that only static libraries 8 | # are specifed as dependencies within rules.mk. 9 | # 10 | 11 | TARGETS = $(LIBRARY) 12 | SHARED_LIBRARY = 13 | IMPORT_LIBRARY = 14 | PROGRAM = 15 | 16 | -------------------------------------------------------------------------------- /lib/libpkix/pkix/top/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # 7 | # Override TARGETS variable so that only static libraries 8 | # are specifed as dependencies within rules.mk. 9 | # 10 | 11 | TARGETS = $(LIBRARY) 12 | SHARED_LIBRARY = 13 | IMPORT_LIBRARY = 14 | PROGRAM = 15 | 16 | -------------------------------------------------------------------------------- /lib/libpkix/pkix/util/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # 7 | # Override TARGETS variable so that only static libraries 8 | # are specifed as dependencies within rules.mk. 9 | # 10 | 11 | TARGETS = $(LIBRARY) 12 | SHARED_LIBRARY = 13 | IMPORT_LIBRARY = 14 | PROGRAM = 15 | 16 | -------------------------------------------------------------------------------- /lib/zlib/inffast.h: -------------------------------------------------------------------------------- 1 | /* inffast.h -- header to use inffast.c 2 | * Copyright (C) 1995-2003, 2010 Mark Adler 3 | * For conditions of distribution and use, see copyright notice in zlib.h 4 | */ 5 | 6 | /* WARNING: this file should *not* be used by applications. It is 7 | part of the implementation of the compression library and is 8 | subject to change. Applications should only use zlib.h. 9 | */ 10 | 11 | void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start)); 12 | -------------------------------------------------------------------------------- /cmd/fipstest/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | CORE_DEPTH = ../.. 7 | 8 | MODULE = nss 9 | 10 | PROGRAM = fipstest 11 | 12 | USE_STATIC_LIBS = 1 13 | 14 | EXPORTS = \ 15 | $(NULL) 16 | 17 | PRIVATE_EXPORTS = \ 18 | $(NULL) 19 | 20 | CSRCS = \ 21 | fipstest.c \ 22 | $(NULL) 23 | 24 | -------------------------------------------------------------------------------- /lib/libpkix/pkix/certsel/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # 7 | # Override TARGETS variable so that only static libraries 8 | # are specifed as dependencies within rules.mk. 9 | # 10 | 11 | TARGETS = $(LIBRARY) 12 | SHARED_LIBRARY = 13 | IMPORT_LIBRARY = 14 | PROGRAM = 15 | 16 | -------------------------------------------------------------------------------- /lib/libpkix/pkix/checker/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # 7 | # Override TARGETS variable so that only static libraries 8 | # are specifed as dependencies within rules.mk. 9 | # 10 | 11 | TARGETS = $(LIBRARY) 12 | SHARED_LIBRARY = 13 | IMPORT_LIBRARY = 14 | PROGRAM = 15 | 16 | -------------------------------------------------------------------------------- /lib/libpkix/pkix/crlsel/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # 7 | # Override TARGETS variable so that only static libraries 8 | # are specifed as dependencies within rules.mk. 9 | # 10 | 11 | TARGETS = $(LIBRARY) 12 | SHARED_LIBRARY = 13 | IMPORT_LIBRARY = 14 | PROGRAM = 15 | 16 | -------------------------------------------------------------------------------- /lib/libpkix/pkix/params/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # 7 | # Override TARGETS variable so that only static libraries 8 | # are specifed as dependencies within rules.mk. 9 | # 10 | 11 | TARGETS = $(LIBRARY) 12 | SHARED_LIBRARY = 13 | IMPORT_LIBRARY = 14 | PROGRAM = 15 | 16 | -------------------------------------------------------------------------------- /lib/libpkix/pkix/results/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # 7 | # Override TARGETS variable so that only static libraries 8 | # are specifed as dependencies within rules.mk. 9 | # 10 | 11 | TARGETS = $(LIBRARY) 12 | SHARED_LIBRARY = 13 | IMPORT_LIBRARY = 14 | PROGRAM = 15 | 16 | -------------------------------------------------------------------------------- /lib/libpkix/pkix_pl_nss/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # 7 | # Override TARGETS variable so that only static libraries 8 | # are specifed as dependencies within rules.mk. 9 | # 10 | 11 | TARGETS = $(LIBRARY) 12 | SHARED_LIBRARY = 13 | IMPORT_LIBRARY = 14 | PROGRAM = 15 | 16 | -------------------------------------------------------------------------------- /lib/libpkix/pkix_pl_nss/pki/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # 7 | # Override TARGETS variable so that only static libraries 8 | # are specifed as dependencies within rules.mk. 9 | # 10 | 11 | TARGETS = $(LIBRARY) 12 | SHARED_LIBRARY = 13 | IMPORT_LIBRARY = 14 | PROGRAM = 15 | 16 | -------------------------------------------------------------------------------- /cmd/rsapoptst/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | CORE_DEPTH = ../.. 6 | 7 | MODULE = nss 8 | 9 | REQUIRES = seccmd dbm softoken 10 | 11 | PROGRAM = rsapoptst 12 | 13 | EXPORTS = \ 14 | $(NULL) 15 | 16 | PRIVATE_EXPORTS = \ 17 | $(NULL) 18 | 19 | CSRCS = \ 20 | rsapoptst.c \ 21 | $(NULL) 22 | 23 | -------------------------------------------------------------------------------- /lib/libpkix/pkix/store/manifest.mn: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | CORE_DEPTH = ../../../.. 6 | 7 | EXPORTS = \ 8 | $(NULL) 9 | 10 | PRIVATE_EXPORTS = \ 11 | pkix_store.h \ 12 | $(NULL) 13 | 14 | MODULE = nss 15 | 16 | CSRCS = \ 17 | pkix_store.c \ 18 | $(NULL) 19 | 20 | LIBRARY_NAME = pkixstore 21 | 22 | -------------------------------------------------------------------------------- /lib/libpkix/pkix_pl_nss/module/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # 7 | # Override TARGETS variable so that only static libraries 8 | # are specifed as dependencies within rules.mk. 9 | # 10 | 11 | TARGETS = $(LIBRARY) 12 | SHARED_LIBRARY = 13 | IMPORT_LIBRARY = 14 | PROGRAM = 15 | 16 | -------------------------------------------------------------------------------- /lib/libpkix/pkix_pl_nss/system/config.mk: -------------------------------------------------------------------------------- 1 | # 2 | # This Source Code Form is subject to the terms of the Mozilla Public 3 | # License, v. 2.0. If a copy of the MPL was not distributed with this 4 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 | 6 | # 7 | # Override TARGETS variable so that only static libraries 8 | # are specifed as dependencies within rules.mk. 9 | # 10 | 11 | TARGETS = $(LIBRARY) 12 | SHARED_LIBRARY = 13 | IMPORT_LIBRARY = 14 | PROGRAM = 15 | 16 | --------------------------------------------------------------------------------