]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
Use ARCFOUR cipher by default to be compatible with devices like android that don...
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Fri, 1 Mar 2013 19:42:18 +0000 (20:42 +0100)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Fri, 1 Mar 2013 19:43:08 +0000 (20:43 +0100)
NEWS
src/certtool.c

diff --git a/NEWS b/NEWS
index 75849afdfd9dad606949415cddaa56a925ce204c..13f70668e7a1dbe139cb16130ad7be0d477e9a7e 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -4,6 +4,10 @@ See the end for copying conditions.
 
 * Version 3.1.10 (unreleased)
 
+** certtool: When generating PKCS #12 files use by default the 
+ARCFOUR (RC4) cipher to be compatible with devices that don't
+support AES with PKCS #12.
+
 ** libgnutls-dane: Updated DANE verification options.
 
 ** API and ABI modifications:
index 570c278c63a1f9dc8a811f29958f420ec48abc2e..414587d8608b41b1aa7de7cff04ed3e1d5bb5931 100644 (file)
@@ -139,7 +139,7 @@ cipher_to_flags (const char *cipher)
 {
   if (cipher == NULL)
     {
-      return GNUTLS_PKCS_USE_PBES2_AES_128;
+      return GNUTLS_PKCS_USE_PKCS12_ARCFOUR;
     }
   else if (strcasecmp (cipher, "3des") == 0)
     {