diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/cipher.h | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index ae90e47ec..0fbabad98 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2007-06-13 David Shaw <[email protected]> + + * cipher.h (CIPHER_ALGO_CAMELLIA): Add Camellia define. + 2007-04-16 David Shaw <[email protected]> * util.h (ascii_toupper, ascii_tolower, ascii_strcasecmp, diff --git a/include/cipher.h b/include/cipher.h index 5b531ccd2..09577c240 100644 --- a/include/cipher.h +++ b/include/cipher.h @@ -1,6 +1,6 @@ /* cipher.h - * Copyright (C) 1998, 1999, 2000, 2001, 2003, 2004, 2005, - * 2006 Free Software Foundation, Inc. + * Copyright (C) 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, + * 2007 Free Software Foundation, Inc. * * This file is part of GNUPG. * @@ -38,6 +38,8 @@ #define CIPHER_ALGO_AES192 8 #define CIPHER_ALGO_AES256 9 #define CIPHER_ALGO_TWOFISH 10 /* twofish 256 bit */ +#define CIPHER_ALGO_CAMELLIA 11 /* camellia 256 bit */ + #define CIPHER_ALGO_DUMMY 110 /* no encryption at all */ #define PUBKEY_ALGO_RSA 1 |