Searched refs:x509 (Results 1 – 20 of 20) sorted by relevance
/cts/hostsidetests/appsecurity/certs/keysets/ |
D | README | 7 openssl x509 -in cts-keyset-test-a.x509.pem -inform PEM -pubkey 8 openssl x509 -in cts-keyset-test-b.x509.pem -inform PEM -pubkey 9 openssl x509 -in cts-keyset-test-c.x509.pem -inform PEM -pubkey
|
/cts/tests/tests/security/tools/ |
D | format_cert.sh | 35 subject_hash=$("$OPENSSL" x509 -in "$in_file" -inform $in_form -subject_hash_old \ 39 subject_hash=$("$OPENSSL" x509 -in "$in_file" -inform $in_form -subject_hash_old \ 54 "$OPENSSL" x509 -in "$in_file" -inform $in_form -outform pem > "$out_file" && \ 55 "$OPENSSL" x509 -in "$in_file" -inform $in_form -noout -text -fingerprint \
|
/cts/tests/BlobStore/certs/ |
D | README | 6 openssl x509 -outform der -in cts-blob-helper-cert.x509.pem -out cts-blob-helper-cert.der 7 openssl x509 -outform der -in cts-blob-helper-cert2.x509.pem -out cts-blob-helper-cert2.der
|
/cts/tests/tests/content/data/ |
D | readme.txt | 13 …3072.pk8 --cert cts/hostsidetests/appsecurity/certs/pkgsigverify/dsa-3072.x509.pem -out cts/tests/… 14 …3072.pk8 --cert cts/hostsidetests/appsecurity/certs/pkgsigverify/dsa-3072.x509.pem -out cts/tests/… 15 …-p384.pk8 --cert cts/hostsidetests/appsecurity/certs/pkgsigverify/ec-p384.x509.pem -out cts/tests/… 16 …3072.pk8 --cert cts/hostsidetests/appsecurity/certs/pkgsigverify/dsa-3072.x509.pem -out cts/tests/… 28 …openssl req -x509 -newkey rsa:4096 -nodes -keyout test-key.pem -out test-cert.x509.pem -days 36500… 30 …nary -nosmimecap -in CtsPkgInstallTinyAppV2V3V4.digests -signer test-cert.x509.pem -inkey test-key… 31 …openssl cms -sign -binary -nosmimecap -in HelloWorld5.digests -signer test-cert.x509.pem -inkey te… 32 …openssl cms -sign -binary -nosmimecap -in HelloWorld5_hdpi-v4.digests -signer test-cert.x509.pem -… 33 …openssl cms -sign -binary -nosmimecap -in HelloWorld5_mdpi-v4.digests -signer test-cert.x509.pem -… 36 …inyAppV2V3V4.digests.signature -inform der -CAfile test-cert.x509.pem -signer test-cert.x509.pem -… [all …]
|
/cts/hostsidetests/appsecurity/res/pkgsigverify/ |
D | generate-apks.sh | 8 …3072.pk8 --cert cts/hostsidetests/appsecurity/certs/pkgsigverify/dsa-3072.x509.pem -out cts/hostsi… 9 …-p256.pk8 --cert cts/hostsidetests/appsecurity/certs/pkgsigverify/ec-p256.x509.pem -out cts/hostsi… 10 …2048.pk8 --cert cts/hostsidetests/appsecurity/certs/pkgsigverify/rsa-2048.x509.pem -out cts/hostsi… 11 …-p384.pk8 --cert cts/hostsidetests/appsecurity/certs/pkgsigverify/ec-p384.x509.pem -out cts/hostsi… 12 …4096.pk8 --cert cts/hostsidetests/appsecurity/certs/pkgsigverify/rsa-4096.x509.pem -out cts/hostsi… 15 …3072.pk8 --cert cts/hostsidetests/appsecurity/certs/pkgsigverify/dsa-3072.x509.pem -out cts/hostsi… 16 …-p256.pk8 --cert cts/hostsidetests/appsecurity/certs/pkgsigverify/ec-p256.x509.pem -out cts/hostsi… 17 …2048.pk8 --cert cts/hostsidetests/appsecurity/certs/pkgsigverify/rsa-2048.x509.pem -out cts/hostsi… 20 …3072.pk8 --cert cts/hostsidetests/appsecurity/certs/pkgsigverify/dsa-3072.x509.pem -out cts/hostsi… 21 …-p256.pk8 --cert cts/hostsidetests/appsecurity/certs/pkgsigverify/ec-p256.x509.pem -out cts/hostsi… [all …]
|
/cts/tests/tests/networksecurityconfig/networksecurityconfig-downloadmanager/res/raw/ |
D | make_certs.go | 20 key, err := x509.ParsePKCS8PrivateKey(block.Bytes) 41 func mustMakeCertChain(caName string, eeKey, caKey *rsa.PrivateKey) (eeCert, caCert *x509.Certifica… 51 caTemplate := x509.Certificate{ 58 SignatureAlgorithm: x509.SHA256WithRSA, 60 …caBytes, err := x509.CreateCertificate(rand.Reader, &caTemplate, &caTemplate, caKey.Public(), caKe… 64 caCert, err = x509.ParseCertificate(caBytes) 69 eeTemplate := x509.Certificate{ 76 SignatureAlgorithm: x509.SHA256WithRSA, 78 eeBytes, err := x509.CreateCertificate(rand.Reader, &eeTemplate, caCert, eeKey.Public(), caKey) 82 eeCert, err = x509.ParseCertificate(eeBytes)
|
/cts/apps/CtsVerifier/ |
D | create_test_certs.sh | 37 -x509 \ 44 && openssl x509 \ 80 && openssl x509 \
|
/cts/tests/tests/webkit/ |
D | generate-ssl-cert.sh | 11 openssl req -x509 -newkey rsa:4096 -sha256 -days 3650 -nodes \
|
/cts/tests/tests/security/src/android/security/cts/ |
D | CVE_2021_0341.java | 217 java.security.cert.X509Certificate x509 = in testPocCVE_2021_0341() local 219 assumeNotNull(x509); in testPocCVE_2021_0341() 221 new CVE_2021_0341_SSLSession(new java.security.cert.X509Certificate[] {x509}); in testPocCVE_2021_0341()
|
/cts/tests/tests/security/ |
D | path_building_certs.go | 34 a.SignWithAlgorithmToPEM(a, x509.ECDSAWithSHA1, filepath.Join(outdir, "a_sha1"))
|
/cts/hostsidetests/appsecurity/test-apps/ApkVerityTestAppPrebuilt/ |
D | Android.bp | 16 // build/make/target/product/security/fsverity-release.x509.der
|
D | README.md | 19 adb shell 'mini-keyctl padd asymmetric fsv-play .fs-verity' < fsverity-debug.x509.der
|
/cts/tests/security/src/android/keystore/cts/ |
D | CertificateUtils.java | 20 import org.bouncycastle.asn1.x509.SubjectPublicKeyInfo;
|
/cts/hostsidetests/library/ |
D | Android.bp | 80 "testkey.x509.pem", 106 "cp $(location testkey.x509.pem) $(genDir)/content && " +
|
/cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/scripts/ |
D | generate-client-cert-chain.sh | 27 -x509 \
|
/cts/hostsidetests/appsecurity/test-apps/CorruptApkTests/compressed_arsc/ |
D | build | 21 TEST_CERT_PEM=${ANDROID_BUILD_TOP}/cts/hostsidetests/appsecurity/certs/cts-testkey1.x509.pem
|
/cts/hostsidetests/appsecurity/test-apps/ApkVerityTestApp/testdata/ |
D | Android.bp | 68 srcs: ["fsverity-debug.x509.pem"],
|
/cts/tests/tests/content/ |
D | Android.bp | 223 "data/test-cert.x509.pem", 226 "data/cts-testkey1.x509.pem",
|
/cts/hostsidetests/appsecurity/test-apps/tinyapp/ |
D | Android.bp | 53 // v1-ec-p256-two-signers-targetSdk-30.apk --cert ec-p256.x509.pem --key 54 // ec-p256.pk8 --next-signer --cert ec-p256_2.x509.pem --key ec-p256_2.pk8
|
/cts/tests/libcore/luni/ |
D | Android.bp | 686 include_filters: ["libcore.sun.security.x509"],
|