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

Side by Side Diff: net/data/ssl/scripts/client_authentication.cnf

Issue 13866049: Fix client certificate authentication on Mac and Linux introduced in r178732 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Refresh key files for certs Created 7 years, 8 months 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 ID=1
2 [req]
3 default_bits = 2048
4 default_md = sha1
5 string_mask = utf8only
6 prompt = no
7 encrypt_key = no
8 distinguished_name = ${ENV::DISTINGUISHED_NAME}
9
10 [ca]
11 default_ca = ca_settings
12
13 [ca_dn]
14 CN = Client Auth Test Root ${ENV::ID}
15
16 [client_dn]
17 CN = Test Client
18
19 [ca_settings]
20 database = out/${ENV::ID}-index.txt
21 new_certs_dir = out
22 default_md = sha1
23 policy = policy_anything
24 serial = out/${ENV::ID}-serial
25 default_days = 3650
26
27 [policy_anything]
28 # Default signing policy
29 countryName = optional
30 stateOrProvinceName = optional
31 localityName = optional
32 organizationName = optional
33 organizationalUnitName = optional
34 commonName = optional
35 emailAddress = optional
OLDNEW
« no previous file with comments | « net/data/ssl/scripts/client-certs.cnf ('k') | net/data/ssl/scripts/generate-client-certificates.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698