implemented sha2_hasher which supports SHA-256, SHA-384 and SHA-512

This commit is contained in:
Martin Willi
2006-09-19 14:49:47 +00:00
parent 462129d332
commit e698dc4559
7 changed files with 741 additions and 50 deletions
+2 -6
View File
@@ -40,13 +40,9 @@ typedef enum integrity_algorithm_t integrity_algorithm_t;
*/
enum integrity_algorithm_t {
AUTH_UNDEFINED = 1024,
/**
* Implemented in class hmac_signer_t.
*/
/** Implemented via hmac_signer_t */
AUTH_HMAC_MD5_96 = 1,
/**
* Implemented in class hmac_signer_t.
*/
/** Implemented via hmac_signer_t */
AUTH_HMAC_SHA1_96 = 2,
AUTH_DES_MAC = 3,
AUTH_KPDK_MD5 = 4,