aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan/plugins/sha1/sha1_hasher.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstrongswan/plugins/sha1/sha1_hasher.h')
-rw-r--r--src/libstrongswan/plugins/sha1/sha1_hasher.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/libstrongswan/plugins/sha1/sha1_hasher.h b/src/libstrongswan/plugins/sha1/sha1_hasher.h
index 2e44797d8..7dcb0b8b3 100644
--- a/src/libstrongswan/plugins/sha1/sha1_hasher.h
+++ b/src/libstrongswan/plugins/sha1/sha1_hasher.h
@@ -23,10 +23,8 @@
#define SHA1_HASHER_H_
typedef struct sha1_hasher_t sha1_hasher_t;
-typedef struct sha1_keyed_prf_t sha1_keyed_prf_t;
#include <crypto/hashers/hasher.h>
-#include <crypto/prfs/prf.h>
/**
* Implementation of hasher_t interface using the SHA1 algorithm.
@@ -40,17 +38,6 @@ struct sha1_hasher_t {
};
/**
- * Implementation of prf_t interface using keyed SHA1 algorithm (used for EAP-AKA).
- */
-struct sha1_keyed_prf_t {
-
- /**
- * Implements prf_t interface.
- */
- prf_t prf_interface;
-};
-
-/**
* Creates a new sha1_hasher_t.
*
* @param algo algorithm, must be HASH_SHA1
@@ -58,12 +45,4 @@ struct sha1_keyed_prf_t {
*/
sha1_hasher_t *sha1_hasher_create(hash_algorithm_t algo);
-/**
- * Creates a new sha1_keyed_prf_t.
- *
- * @param algo algorithm, must be PRF_KEYED_SHA1
- * @return sha1_keyed_prf_tobject
- */
-sha1_keyed_prf_t *sha1_keyed_prf_create(pseudo_random_function_t algo);
-
#endif /*SHA1_HASHER_H_ @}*/