diff --git a/include/ChangeLog b/include/ChangeLog index aa33d9fbe..454863188 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2003-05-02 David Shaw + + * cipher.h: Add constants for compression algorithms. + 2003-02-04 David Shaw * cipher.h: Add constants for new SHAs. diff --git a/include/cipher.h b/include/cipher.h index 2e093c6a5..e7b0c2dc1 100644 --- a/include/cipher.h +++ b/include/cipher.h @@ -63,6 +63,10 @@ #define DIGEST_ALGO_SHA384 9 #define DIGEST_ALGO_SHA512 10 +#define COMPRESS_ALGO_NONE 0 +#define COMPRESS_ALGO_ZIP 1 +#define COMPRESS_ALGO_ZLIB 2 + #define is_RSA(a) ((a)==PUBKEY_ALGO_RSA || (a)==PUBKEY_ALGO_RSA_E \ || (a)==PUBKEY_ALGO_RSA_S ) #define is_ELGAMAL(a) ((a)==PUBKEY_ALGO_ELGAMAL || (a)==PUBKEY_ALGO_ELGAMAL_E)