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

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

Issue 12220104: Wire up SSL client authentication for OpenSSL/Android through the net/ stack (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: remove chrome/browser changes + fix linux_redux build Created 7 years, 10 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
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

Powered by Google App Engine
This is Rietveld 408576698