Index: content/child/webcrypto/webcrypto_util.h |
diff --git a/content/child/webcrypto/webcrypto_util.h b/content/child/webcrypto/webcrypto_util.h |
index a3a7143e55138242f3748582da5ee50d11d4e5af..bbacc9b4d6627b750b529ff02284675f342fe29f 100644 |
--- a/content/child/webcrypto/webcrypto_util.h |
+++ b/content/child/webcrypto/webcrypto_util.h |
@@ -7,9 +7,7 @@ |
#include <stdint.h> |
#include <string> |
-#include <vector> |
-#include "base/strings/string_piece.h" |
#include "base/values.h" |
#include "content/common/content_export.h" |
#include "third_party/WebKit/public/platform/WebCryptoAlgorithm.h" |
@@ -21,18 +19,6 @@ namespace webcrypto { |
class Status; |
-// This function decodes unpadded 'base64url' encoded data, as described in |
-// RFC4648 (http://www.ietf.org/rfc/rfc4648.txt) Section 5. |
-// In Web Crypto, this type of encoding is only used inside JWK. |
-CONTENT_EXPORT bool Base64DecodeUrlSafe(const std::string& input, |
- std::string* output); |
- |
-// Returns an unpadded 'base64url' encoding of the input data, the opposite of |
-// Base64DecodeUrlSafe() above. |
-CONTENT_EXPORT std::string Base64EncodeUrlSafe(const base::StringPiece& input); |
-CONTENT_EXPORT std::string Base64EncodeUrlSafe( |
- const std::vector<uint8_t>& input); |
- |
// Composes a Web Crypto usage mask from an array of JWK key_ops values. |
CONTENT_EXPORT Status GetWebCryptoUsagesFromJwkKeyOps( |
const base::ListValue* jwk_key_ops_value, |