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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: net/data/verify_certificate_chain_unittest/README
diff --git a/net/data/verify_certificate_chain_unittest/README b/net/data/verify_certificate_chain_unittest/README
new file mode 100644
index 0000000000000000000000000000000000000000..4a2800e3e2f08cd0d02dc5d63e32cbf320bdb71e
--- /dev/null
+++ b/net/data/verify_certificate_chain_unittest/README
@@ -0,0 +1,29 @@
+This directory contains test data for verifying certificate chains.
+
+It contains the following types of files:
+
+===============================
+Files ending in "-trust.txt"
+===============================
+
+These files descibe a very simple trust store.
+
+It is a simple text format comprising a list of (Name, SubjectPublicKeyInfo)
+mappings for trusted keys.
+
+Each mapping is comprised of 3 lines:
+
+ [line 1] Some text describing the mapping
+ [line 2] Base64-encoded DER for an RFC 5280 Name
+ [line 3] Base64-encoded DER for a SubjectPublicKeyInfo
+
+=====================
+Files ending in "-chain.pem"
+=====================
+
+These files describe a chain of certificates.
+
+It is a PEM file containing 1 or more "CERTIFICATE" blocks. Each of these
+blocks contains a DER-encoded X.509 certificate. The chain starts with the
+target certificate to verify, following by 0 or more intermediaries (in order,
+advancing towards the trust anchor).

Powered by Google App Engine
This is Rietveld 408576698