Index: content/child/webcrypto/webcrypto_util.cc |
diff --git a/content/child/webcrypto/webcrypto_util.cc b/content/child/webcrypto/webcrypto_util.cc |
index 6ea78f2f5e466078ee10f4e0e3784f1227a26a2f..b052bc916d0e55728f33deb8f5feb34a96edb9d3 100644 |
--- a/content/child/webcrypto/webcrypto_util.cc |
+++ b/content/child/webcrypto/webcrypto_util.cc |
@@ -133,12 +133,6 @@ bool KeyUsageAllows(const blink::WebCryptoKey& key, |
return ((key.usages() & usage) != 0); |
} |
-bool IsAlgorithmRsa(blink::WebCryptoAlgorithmId alg_id) { |
- return alg_id == blink::WebCryptoAlgorithmIdRsaOaep || |
- alg_id == blink::WebCryptoAlgorithmIdRsaSsaPkcs1v1_5 || |
- alg_id == blink::WebCryptoAlgorithmIdRsaPss; |
-} |
- |
// The WebCrypto spec defines the default value for the tag length, as well as |
// the allowed values for tag length. |
Status GetAesGcmTagLengthInBits(const blink::WebCryptoAesGcmParams* params, |