| OLD | NEW |
| 1 This directory contains various certificates for use with SSL-related | 1 This directory contains various certificates for use with SSL-related |
| 2 unit tests. | 2 unit tests. |
| 3 | 3 |
| 4 ===== Real-world certificates that need manual updating | 4 ===== Real-world certificates that need manual updating |
| 5 - google.binary.p7b | 5 - google.binary.p7b |
| 6 - google.chain.pem | 6 - google.chain.pem |
| 7 - google.pem_cert.p7b | 7 - google.pem_cert.p7b |
| 8 - google.pem_pkcs7.p7b | 8 - google.pem_pkcs7.p7b |
| 9 - google.pkcs7.p7b | 9 - google.pkcs7.p7b |
| 10 - google.single.der | 10 - google.single.der |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 | 215 |
| 216 ===== From net/data/ssl/scripts/generate-client-certificates.sh | 216 ===== From net/data/ssl/scripts/generate-client-certificates.sh |
| 217 - client_1.pem | 217 - client_1.pem |
| 218 - client_1.key | 218 - client_1.key |
| 219 - client_1.pk8 | 219 - client_1.pk8 |
| 220 - client_1_ca.pem | 220 - client_1_ca.pem |
| 221 - client_2.pem | 221 - client_2.pem |
| 222 - client_2.key | 222 - client_2.key |
| 223 - client_2.pk8 | 223 - client_2.pk8 |
| 224 - client_2_ca.pem | 224 - client_2_ca.pem |
| 225 - client_3.pem |
| 226 - client_3.key |
| 227 - client_3.pk8 |
| 228 - client_3_ca.pem |
| 225 This is a set of files used to unit test SSL client certificate | 229 This is a set of files used to unit test SSL client certificate |
| 226 authentication. | 230 authentication. |
| 227 - client_1_ca.pem and client_2_ca.pem are the certificates of | 231 - client_1_ca.pem and client_2_ca.pem are the certificates of |
| 228 two distinct signing CAs. | 232 two distinct signing CAs. |
| 229 - client_1.pem and client_1.key correspond to the certificate and | 233 - client_1.pem and client_1.key correspond to the certificate and |
| 230 private key for a first certificate signed by client_1_ca.pem. | 234 private key for a first certificate signed by client_1_ca.pem. |
| 231 - client_2.pem and client_2.key correspond to the certificate and | 235 - client_2.pem and client_2.key correspond to the certificate and |
| 232 private key for a second certificate signed by client_2_ca.pem. | 236 private key for a second certificate signed by client_2_ca.pem. |
| 233 - each .pk8 file contains the same key as the corresponding .key file | 237 - each .pk8 file contains the same key as the corresponding .key file |
| 234 as PKCS#8 PrivateKeyInfo in DER encoding. | 238 as PKCS#8 PrivateKeyInfo in DER encoding. |
| 239 - client_3.pem is nearly identical to client_2.pem, except it is used |
| 240 to test wifi EAP-TLS authentication so it uses a different set |
| 241 of X509v3 extensions. Specifically it includes two Subject |
| 242 Alternative Name fields recognized by Chrome OS. |
| 235 | 243 |
| 236 ===== From net/data/ssl/scripts/generate-android-test-key.sh | 244 ===== From net/data/ssl/scripts/generate-android-test-key.sh |
| 237 - android-test-key-rsa.pem | 245 - android-test-key-rsa.pem |
| 238 - android-test-key-dsa.pem | 246 - android-test-key-dsa.pem |
| 239 - android-test-key-dsa-public.pem | 247 - android-test-key-dsa-public.pem |
| 240 - android-test-key-ecdsa.pem | 248 - android-test-key-ecdsa.pem |
| 241 - android-test-key-ecdsa-public.pem | 249 - android-test-key-ecdsa-public.pem |
| 242 This is a set of test RSA/DSA/ECDSA keys used by the Android-specific | 250 This is a set of test RSA/DSA/ECDSA keys used by the Android-specific |
| 243 unit test in net/android/keystore_unittest.c. They are used to verify | 251 unit test in net/android/keystore_unittest.c. They are used to verify |
| 244 that the OpenSSL-specific wrapper for platform PrivateKey objects | 252 that the OpenSSL-specific wrapper for platform PrivateKey objects |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 ===== From net/data/ssl/scripts/generate-aia-certs.sh | 287 ===== From net/data/ssl/scripts/generate-aia-certs.sh |
| 280 - aia-cert.pem | 288 - aia-cert.pem |
| 281 - aia-intermediate.der | 289 - aia-intermediate.der |
| 282 - aia-root.pem | 290 - aia-root.pem |
| 283 A certificate chain which we use to ensure AIA fetching works correctly | 291 A certificate chain which we use to ensure AIA fetching works correctly |
| 284 when using NSS to verify certificates (which uses our HTTP stack). | 292 when using NSS to verify certificates (which uses our HTTP stack). |
| 285 aia-cert.pem has a caIssuers that points to "aia-test.invalid" as the URL | 293 aia-cert.pem has a caIssuers that points to "aia-test.invalid" as the URL |
| 286 containing the intermediate, which can be served via a URLRequestFilter. | 294 containing the intermediate, which can be served via a URLRequestFilter. |
| 287 aia-intermediate.der is stored in DER form for convenience, since that is | 295 aia-intermediate.der is stored in DER form for convenience, since that is |
| 288 the form expected of certificates discovered via AIA. | 296 the form expected of certificates discovered via AIA. |
| OLD | NEW |