33 lines
1.3 KiB
Diff
33 lines
1.3 KiB
Diff
|
From 5fcee6608c93449456da8e02410eca54b54b0e69 Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Cristian=20Rodr=C3=ADguez?= <crrodriguez@opensuse.org>
|
||
|
Date: Mon, 15 Aug 2011 23:30:28 -0400
|
||
|
Subject: [PATCH 6/6] Added AES-256-GCM. Reported by Benjamin Hof.
|
||
|
MIME-Version: 1.0
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
Conflicts:
|
||
|
|
||
|
NEWS
|
||
|
|
||
|
Signed-off-by: Cristian Rodríguez <crrodriguez@opensuse.org>
|
||
|
---
|
||
|
lib/algorithms/ciphers.c | 1 +
|
||
|
1 files changed, 1 insertions(+), 0 deletions(-)
|
||
|
|
||
|
diff --git a/lib/algorithms/ciphers.c b/lib/algorithms/ciphers.c
|
||
|
index 9bcd4d9..b1ba338 100644
|
||
|
--- a/lib/algorithms/ciphers.c
|
||
|
+++ b/lib/algorithms/ciphers.c
|
||
|
@@ -52,6 +52,7 @@ static const gnutls_cipher_entry algorithms[] = {
|
||
|
{"AES-192-CBC", GNUTLS_CIPHER_AES_192_CBC, 16, 24, CIPHER_BLOCK, 16, 0, 0},
|
||
|
{"AES-128-CBC", GNUTLS_CIPHER_AES_128_CBC, 16, 16, CIPHER_BLOCK, 16, 0, 0},
|
||
|
{"AES-128-GCM", GNUTLS_CIPHER_AES_128_GCM, 16, 16, CIPHER_STREAM, AEAD_IMPLICIT_DATA_SIZE, 0, 1},
|
||
|
+ {"AES-256-GCM", GNUTLS_CIPHER_AES_256_GCM, 16, 32, CIPHER_STREAM, AEAD_IMPLICIT_DATA_SIZE, 0, 1},
|
||
|
{"3DES-CBC", GNUTLS_CIPHER_3DES_CBC, 8, 24, CIPHER_BLOCK, 8, 0, 0},
|
||
|
{"DES-CBC", GNUTLS_CIPHER_DES_CBC, 8, 8, CIPHER_BLOCK, 8, 0, 0},
|
||
|
{"ARCFOUR-128", GNUTLS_CIPHER_ARCFOUR_128, 1, 16, CIPHER_STREAM, 0, 0, 0},
|
||
|
--
|
||
|
1.7.4.1
|
||
|
|