| Index: content/renderer/webcrypto/webcrypto_impl_openssl.cc
|
| diff --git a/content/renderer/webcrypto/webcrypto_impl_openssl.cc b/content/renderer/webcrypto/webcrypto_impl_openssl.cc
|
| index 767d840dc00a42803046e4e918ce157c4c7b0a70..ce1611c25ebf69a2d0a633b7308932dc9c2a8b24 100644
|
| --- a/content/renderer/webcrypto/webcrypto_impl_openssl.cc
|
| +++ b/content/renderer/webcrypto/webcrypto_impl_openssl.cc
|
| @@ -81,14 +81,10 @@ bool WebCryptoImpl::ImportKeyInternal(
|
| return false;
|
| }
|
|
|
| - // TODO(padolph): Need to split handling for symmetric (raw or jwk format) and
|
| - // asymmetric (jwk, spki, or pkcs8 format) keys.
|
| + // TODO(padolph): Need to split handling for symmetric (raw format) and
|
| + // asymmetric (spki or pkcs8 format) keys.
|
| // Currently only supporting symmetric.
|
|
|
| - // TODO(padolph): jwk handling. Define precedence between jwk contents and
|
| - // this method's parameters, e.g. 'alg' in jwk vs algorithm.id(). Who wins if
|
| - // they differ? (jwk, probably)
|
| -
|
| // Symmetric keys are always type secret
|
| *type = WebKit::WebCryptoKeyTypeSecret;
|
|
|
|
|