Title: [215555] trunk/Source/WebCore
Revision
215555
Author
[email protected]
Date
2017-04-20 02:02:35 -0700 (Thu, 20 Apr 2017)

Log Message

Register missing AES_CTR, ECDSA and HKDF algorithms in
GCrypt's CryptoAlgorithmRegistry implementation.

Rubber-stamped by Carlos Alberto Lopez Perez.

* crypto/gcrypt/CryptoAlgorithmRegistryGCrypt.cpp:
(WebCore::CryptoAlgorithmRegistry::platformRegisterAlgorithms):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (215554 => 215555)


--- trunk/Source/WebCore/ChangeLog	2017-04-20 08:48:53 UTC (rev 215554)
+++ trunk/Source/WebCore/ChangeLog	2017-04-20 09:02:35 UTC (rev 215555)
@@ -1,3 +1,13 @@
+2017-04-20  Zan Dobersek  <[email protected]>
+
+        Register missing AES_CTR, ECDSA and HKDF algorithms in
+        GCrypt's CryptoAlgorithmRegistry implementation.
+
+        Rubber-stamped by Carlos Alberto Lopez Perez.
+
+        * crypto/gcrypt/CryptoAlgorithmRegistryGCrypt.cpp:
+        (WebCore::CryptoAlgorithmRegistry::platformRegisterAlgorithms):
+
 2017-04-20  Joanmarie Diggs  <[email protected]>
 
         [ATK] Implement support for DPub ARIA roles

Modified: trunk/Source/WebCore/crypto/gcrypt/CryptoAlgorithmRegistryGCrypt.cpp (215554 => 215555)


--- trunk/Source/WebCore/crypto/gcrypt/CryptoAlgorithmRegistryGCrypt.cpp	2017-04-20 08:48:53 UTC (rev 215554)
+++ trunk/Source/WebCore/crypto/gcrypt/CryptoAlgorithmRegistryGCrypt.cpp	2017-04-20 09:02:35 UTC (rev 215555)
@@ -30,9 +30,12 @@
 
 #include "CryptoAlgorithmAES_CBC.h"
 #include "CryptoAlgorithmAES_CFB.h"
+#include "CryptoAlgorithmAES_CTR.h"
 #include "CryptoAlgorithmAES_GCM.h"
 #include "CryptoAlgorithmAES_KW.h"
 #include "CryptoAlgorithmECDH.h"
+#include "CryptoAlgorithmECDSA.h"
+#include "CryptoAlgorithmHKDF.h"
 #include "CryptoAlgorithmHMAC.h"
 #include "CryptoAlgorithmPBKDF2.h"
 #include "CryptoAlgorithmRSAES_PKCS1_v1_5.h"
@@ -50,9 +53,12 @@
 {
     registerAlgorithm<CryptoAlgorithmAES_CBC>();
     registerAlgorithm<CryptoAlgorithmAES_CFB>();
+    registerAlgorithm<CryptoAlgorithmAES_CTR>();
     registerAlgorithm<CryptoAlgorithmAES_GCM>();
     registerAlgorithm<CryptoAlgorithmAES_KW>();
     registerAlgorithm<CryptoAlgorithmECDH>();
+    registerAlgorithm<CryptoAlgorithmECDSA>();
+    registerAlgorithm<CryptoAlgorithmHKDF>();
     registerAlgorithm<CryptoAlgorithmHMAC>();
     registerAlgorithm<CryptoAlgorithmPBKDF2>();
     registerAlgorithm<CryptoAlgorithmRSAES_PKCS1_v1_5>();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to