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

Unified Diff: net/http/http_security_headers.h

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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/http_response_info_unittest.cc ('k') | net/http/http_security_headers.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_security_headers.h
diff --git a/net/http/http_security_headers.h b/net/http/http_security_headers.h
deleted file mode 100644
index 12e6be9000a9930d35c992758e7a9c7fe3f6975d..0000000000000000000000000000000000000000
--- a/net/http/http_security_headers.h
+++ /dev/null
@@ -1,59 +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.
-
-#ifndef NET_HTTP_HTTP_SECURITY_HEADERS_H_
-#define NET_HTTP_HTTP_SECURITY_HEADERS_H_
-
-#include <string>
-
-#include "base/basictypes.h"
-#include "base/gtest_prod_util.h"
-#include "base/time/time.h"
-#include "base/values.h"
-#include "net/base/hash_value.h"
-#include "net/base/net_export.h"
-
-namespace net {
-
-const int64 kMaxHSTSAgeSecs = 86400 * 365; // 1 year
-
-// Parses |value| as a Strict-Transport-Security header value. If successful,
-// returns true and sets |*max_age| and |*include_subdomains|.
-// Otherwise returns false and leaves the output parameters unchanged.
-//
-// value is the right-hand side of:
-//
-// "Strict-Transport-Security" ":"
-// [ directive ] *( ";" [ directive ] )
-bool NET_EXPORT_PRIVATE ParseHSTSHeader(const std::string& value,
- base::TimeDelta* max_age,
- bool* include_subdomains);
-
-// Parses |value| as a Public-Key-Pins header value. If successful, returns
-// true and populates the |*max_age|, |*include_subdomains|, and |*hashes|
-// values. Otherwise returns false and leaves the output parameters
-// unchanged.
-//
-// value is the right-hand side of:
-//
-// "Public-Key-Pins" ":"
-// "max-age" "=" delta-seconds ";"
-// "pin-" algo "=" base64 [ ";" ... ]
-// [ ";" "includeSubdomains" ]
-//
-// For this function to return true, the key hashes specified by the HPKP
-// header must pass two additional checks. There MUST be at least one key
-// hash which matches the SSL certificate chain of the current site (as
-// specified by the chain_hashes) parameter. In addition, there MUST be at
-// least one key hash which does NOT match the site's SSL certificate chain
-// (this is the "backup pin").
-bool NET_EXPORT_PRIVATE ParseHPKPHeader(const std::string& value,
- const HashValueVector& chain_hashes,
- base::TimeDelta* max_age,
- bool* include_subdomains,
- HashValueVector* hashes);
-
-} // namespace net
-
-#endif // NET_HTTP_HTTP_SECURITY_HEADERS_H_
« no previous file with comments | « net/http/http_response_info_unittest.cc ('k') | net/http/http_security_headers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698