Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(230)

Side by Side Diff: net/data/ssl/certificates/openssl_cert.cnf

Issue 5535006: Add unittests for net::TestRootCerts and regenerate test certificates (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address wtc feedback Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # The default configuration to use when requesting a certificate to be used
2 # as the server test certificate, whether OK or expired.
3 [req]
4 # Common configuration for all requests
5 default_bits = 1024
6 default_md = sha1
7 string_mask = utf8only
8 prompt = no
9 encrypt_key = no
10 distinguished_name = req_dn
11 req_extensions = req_extensions
12
13 [req_dn]
14 C = US
15 ST = California
16 L = Mountain View
17 O = Test CA
18 # TODO(wtc): Deprecate de facto, but not de jure, matching of iPAddress in
wtc 2010/12/08 19:58:22 Are you sure? I think we can put CN = Test Serv
Ryan Sleevi 2010/12/09 05:49:55 I've updated the comment to reflect the two open b
19 # the commonName field
20 CN = 127.0.0.1
21
22 [req_extensions]
23 subjectAltName = IP:127.0.0.1
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698