diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2013-03-01 20:42:18 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2013-03-01 20:43:08 +0100 |
commit | 920fd086a2e7d160f759a9c857d63439dd7cb2c8 (patch) | |
tree | e5eab117fc32f25889c2fd074139a3cd7c00a806 /src | |
parent | e83a184c54c9c705306ba4941f5600620cd3b597 (diff) | |
download | gnutls-920fd086a2e7d160f759a9c857d63439dd7cb2c8.tar.gz |
Use ARCFOUR cipher by default to be compatible with devices like android that don't support AES
Diffstat (limited to 'src')
-rw-r--r-- | src/certtool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/certtool.c b/src/certtool.c index 570c278c63..414587d860 100644 --- a/src/certtool.c +++ b/src/certtool.c @@ -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) { |