Index: content/child/webcrypto/webcrypto_util.h |
diff --git a/content/child/webcrypto/webcrypto_util.h b/content/child/webcrypto/webcrypto_util.h |
index 1e6778c2fec5ce452d66db51dee51c886b643e30..a8fe66505cae6b88c8fed99276b286478e12c1c5 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, |