| Index: Source/platform/exported/WebCryptoKeyAlgorithm.cpp
|
| diff --git a/Source/platform/exported/WebCryptoKeyAlgorithm.cpp b/Source/platform/exported/WebCryptoKeyAlgorithm.cpp
|
| index bef587d0d25dbd6e796cacba6688ed7e2bc256b6..fac9c2d162261ec5e533cbfb386da7023af7bd54 100644
|
| --- a/Source/platform/exported/WebCryptoKeyAlgorithm.cpp
|
| +++ b/Source/platform/exported/WebCryptoKeyAlgorithm.cpp
|
| @@ -93,6 +93,11 @@ WebCryptoKeyAlgorithm WebCryptoKeyAlgorithm::createEc(WebCryptoAlgorithmId id, W
|
| return WebCryptoKeyAlgorithm(id, adoptPtr(new WebCryptoEcKeyAlgorithmParams(namedCurve)));
|
| }
|
|
|
| +WebCryptoKeyAlgorithm WebCryptoKeyAlgorithm::createPbkdf2(WebCryptoAlgorithmId id)
|
| +{
|
| + return WebCryptoKeyAlgorithm(id, adoptPtr(new WebCryptoPbkdf2KeyAlgorithmParams()));
|
| +}
|
| +
|
| bool WebCryptoKeyAlgorithm::isNull() const
|
| {
|
| return m_private.isNull();
|
|
|