Index: content/child/webcrypto/openssl/rsa_key_openssl.cc |
diff --git a/content/child/webcrypto/openssl/rsa_key_openssl.cc b/content/child/webcrypto/openssl/rsa_key_openssl.cc |
index 13b2333e60294107a2f9f580e9f9aca45924df51..b93de69f0fa66a8ce5716786dbf543aa3d9f7c0a 100644 |
--- a/content/child/webcrypto/openssl/rsa_key_openssl.cc |
+++ b/content/child/webcrypto/openssl/rsa_key_openssl.cc |
@@ -284,8 +284,8 @@ Status RsaHashedAlgorithm::GenerateKey( |
return Status::OperationError(); |
} |
- blink::WebCryptoKey public_key = blink::WebCryptoKey::createNull(); |
- blink::WebCryptoKey private_key = blink::WebCryptoKey::createNull(); |
+ blink::WebCryptoKey public_key; |
+ blink::WebCryptoKey private_key; |
// Note that extractable is unconditionally set to true. This is because per |
// the WebCrypto spec generated public keys are always public. |