Index: content/child/webcrypto/webcrypto_util.cc |
diff --git a/content/child/webcrypto/webcrypto_util.cc b/content/child/webcrypto/webcrypto_util.cc |
index 247437775f1112bc03e579b256ecdb10e3fd392f..dae12223059224c021b9458d9ce64442af06b58e 100644 |
--- a/content/child/webcrypto/webcrypto_util.cc |
+++ b/content/child/webcrypto/webcrypto_util.cc |
@@ -141,12 +141,6 @@ bool IsAlgorithmRsa(blink::WebCryptoAlgorithmId alg_id) { |
alg_id == blink::WebCryptoAlgorithmIdRsaSsaPkcs1v1_5; |
} |
-bool IsAlgorithmAsymmetric(blink::WebCryptoAlgorithmId alg_id) { |
- // TODO(padolph): include all other asymmetric algorithms once they are |
- // defined, e.g. EC and DH. |
- return IsAlgorithmRsa(alg_id); |
-} |
- |
// 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, |