aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan/crypto/hashers/hasher.h
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2006-10-18 11:46:13 +0000
committerMartin Willi <martin@strongswan.org>2006-10-18 11:46:13 +0000
commit60356f3375da67375e48691bb1d732c02d1681a1 (patch)
tree1bfa3bd28d46c4211a17a831094e7fcbceea8bb6 /src/libstrongswan/crypto/hashers/hasher.h
parent8cdce67afa4bc4b4ff1a05e956db08cddc5dc48e (diff)
downloadstrongswan-60356f3375da67375e48691bb1d732c02d1681a1.tar.bz2
strongswan-60356f3375da67375e48691bb1d732c02d1681a1.tar.xz
introduced new logging subsystem using bus:
passive listeners can register on the bus active listeners wait for signals actively multiplexing allows multiple listeners to receive debug signals a lot more...
Diffstat (limited to 'src/libstrongswan/crypto/hashers/hasher.h')
-rw-r--r--src/libstrongswan/crypto/hashers/hasher.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/libstrongswan/crypto/hashers/hasher.h b/src/libstrongswan/crypto/hashers/hasher.h
index ccc8d3eca..ed3defb05 100644
--- a/src/libstrongswan/crypto/hashers/hasher.h
+++ b/src/libstrongswan/crypto/hashers/hasher.h
@@ -43,17 +43,17 @@ typedef enum hash_algorithm_t hash_algorithm_t;
* @ingroup hashers
*/
enum hash_algorithm_t {
- HASH_MD2,
+ HASH_MD2 = 0,
/** Implemented in class md5_hasher_t */
- HASH_MD5,
+ HASH_MD5 = 1,
/** Implemented in class sha1_hasher_t */
- HASH_SHA1,
+ HASH_SHA1 = 2,
/** Implemented in class sha2_hasher_t */
- HASH_SHA256,
+ HASH_SHA256 = 3,
/** Implemented in class sha2_hasher_t */
- HASH_SHA384,
+ HASH_SHA384 = 4,
/** Implemented in class sha2_hasher_t */
- HASH_SHA512,
+ HASH_SHA512 = 5,
};
#define HASH_SIZE_MD2 16
@@ -65,9 +65,9 @@ enum hash_algorithm_t {
#define HASH_SIZE_MAX 64
/**
- * String mappings for hash_algorithm_t.
+ * enum names for hash_algorithm_t.
*/
-extern mapping_t hash_algorithm_m[];
+extern enum_name_t *hash_algorithm_names;
typedef struct hasher_t hasher_t;