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

Unified Diff: net/tools/transport_security_state_generator/resources/transport_security_state_static.template

Issue 2574413002: Make static (preloaded) security state generation part of the build process. (Closed)
Patch Set: rebase Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/http/transport_security_state_static.template ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/transport_security_state_generator/resources/transport_security_state_static.template
diff --git a/net/tools/transport_security_state_generator/resources/transport_security_state_static.template b/net/tools/transport_security_state_generator/resources/transport_security_state_static.template
deleted file mode 100644
index 1d33a46a59a4930aa609d057db8a7eda09c082b6..0000000000000000000000000000000000000000
--- a/net/tools/transport_security_state_generator/resources/transport_security_state_static.template
+++ /dev/null
@@ -1,60 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// This file is generated by net/tools/transport_security_state_generator/.
-
-#ifndef NET_HTTP_TRANSPORT_SECURITY_STATE_STATIC_H_
-#define NET_HTTP_TRANSPORT_SECURITY_STATE_STATIC_H_
-
-#include <stdint.h>
-
-#include "net/http/transport_security_state_source.h"
-
-enum SecondLevelDomainName [[DOMAIN_IDS]];
-
-// These are SubjectPublicKeyInfo hashes for public key pinning. The
-// hashes are SHA256 digests.
-[[SPKI_HASHES]]
-
-static const char* const kExpectCTReportURIs[] = [[EXPECT_CT_REPORT_URIS]];
-
-static const char* const kExpectStapleReportURIs[] = [[EXPECT_STAPLE_REPORT_URIS]];
-
-// kNoRejectedPublicKeys is a placeholder for when no public keys are rejected.
-static const char* const kNoRejectedPublicKeys[] = {
- nullptr,
-};
-
-// kNoReportURI is a placeholder for when a pinset does not have a report URI.
-static const char kNoReportURI[] = "";
-
-[[ACCEPTABLE_CERTS]]
-
-static const net::TransportSecurityStateSource::Pinset kPinsets[] = [[PINSETS]];
-
-// kHSTSHuffmanTree describes a Huffman tree. The nodes of the tree are pairs
-// of uint8s. The last node in the array is the root of the tree. Each pair is
-// two uint8_t values, the first is "left" and the second is "right". If a
-// uint8_t value has the MSB set then it represents a literal leaf value.
-// Otherwise it's a pointer to the n'th element of the array.
-static const uint8_t kHSTSHuffmanTree[] = [[HUFFMAN_TREE]];
-
-static const uint8_t kPreloadedHSTSData[] = [[HSTS_TRIE]];
-
-static const unsigned kPreloadedHSTSBits = [[HSTS_TRIE_BITS]];
-static const unsigned kHSTSRootPosition = [[HSTS_TRIE_ROOT]];
-
-static const net::TransportSecurityStateSource kHSTSSource = {
- kHSTSHuffmanTree,
- sizeof(kHSTSHuffmanTree),
- kPreloadedHSTSData,
- kPreloadedHSTSBits,
- kHSTSRootPosition,
- kExpectCTReportURIs,
- kExpectStapleReportURIs,
- kPinsets,
- arraysize(kPinsets)
-};
-
-#endif // NET_HTTP_TRANSPORT_SECURITY_STATE_STATIC_H_
« no previous file with comments | « net/http/transport_security_state_static.template ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698