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

Side by Side Diff: net/data/verify_certificate_chain_unittest/README

Issue 1410713005: NOT FOR REVIEW.... (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@extension_parsing
Patch Set: Created 5 years, 2 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 This directory contains test data for verifying certificate chains.
2
3 It contains the following types of files:
4
5 ===============================
6 Files ending in "-trust.txt"
7 ===============================
8
9 These files descibe a very simple trust store.
10
11 It is a simple text format comprising a list of (Name, SubjectPublicKeyInfo)
12 mappings for trusted keys.
13
14 Each mapping is comprised of 3 lines:
15
16 [line 1] Some text describing the mapping
17 [line 2] Base64-encoded DER for an RFC 5280 Name
18 [line 3] Base64-encoded DER for a SubjectPublicKeyInfo
19
20 =====================
21 Files ending in "-chain.pem"
22 =====================
23
24 These files describe a chain of certificates.
25
26 It is a PEM file containing 1 or more "CERTIFICATE" blocks. Each of these
27 blocks contains a DER-encoded X.509 certificate. The chain starts with the
28 target certificate to verify, following by 0 or more intermediaries (in order,
29 advancing towards the trust anchor).
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698