Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: mozilla/security/nss/lib/pk11wrap/pk11mech.c

Issue 12668022: Make CKM_AES_GCM usable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: mozilla/security/nss/lib/pk11wrap/pk11mech.c
===================================================================
--- mozilla/security/nss/lib/pk11wrap/pk11mech.c (revision 182578)
+++ mozilla/security/nss/lib/pk11wrap/pk11mech.c (working copy)
@@ -221,6 +221,10 @@
return CKK_CAMELLIA;
case CKM_AES_ECB:
case CKM_AES_CBC:
+ case CKM_AES_CCM:
+ case CKM_AES_CTR:
+ case CKM_AES_CTS:
+ case CKM_AES_GCM:
wtc 2013/03/26 18:24:46 This function (PK11_GetKeyType) is called by PK11_
case CKM_AES_MAC:
case CKM_AES_MAC_GENERAL:
case CKM_AES_CBC_PAD:

Powered by Google App Engine
This is Rietveld 408576698