]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
discuss missing algorithms.
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Sat, 14 May 2011 17:49:54 +0000 (19:49 +0200)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Sat, 14 May 2011 17:49:54 +0000 (19:49 +0200)
doc/cha-intro-tls.texi

index 2f1cf3417b225780aeab19bd7d9343b029f3bfd9..94cd31c5beae08665e0d6a94e773cfe17edfcc0f 100644 (file)
@@ -192,8 +192,15 @@ DES algorithm.  Has 128 bits block size and is used in CBC mode.
 @item AES_GCM
 This is the AES algorithm in the authenticated encryption GCM mode.
 This mode combines message authentication and encryption.
+
+@item CAMELLIA_CBC
+CAMELLIA is an 128-bit block cipher developed by Mitsubish and NTT. It
+is one of the approved ciphers of the European NESSIE and Japanese
+CRYPTREC projects.
+
 @end table
 
+
 Supported MAC algorithms:
 
 @table @code
@@ -205,6 +212,14 @@ MD5 is a cryptographic hash algorithm designed by Ron Rivest. Outputs
 SHA is a cryptographic hash algorithm designed by NSA. Outputs 160
 bits of data.
 
+@item MAC_SHA256
+SHA256 is a cryptographic hash algorithm designed by NSA. Outputs 256
+bits of data.
+
+@item MAC_AEAD
+This indicates that an authenticated encryption algorithm, such as
+GCM, is in use.
+
 @end table
 
 @node Compression algorithms used in the record layer
@@ -235,6 +250,9 @@ The supported compression algorithms are:
 @item DEFLATE
 Zlib compression, using the deflate algorithm.
 
+@item NULL
+No compression.
+
 @end table
 
 @node Weaknesses and countermeasures