summaryrefslogtreecommitdiff
path: root/tools/hmac-sha1.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/hmac-sha1.h')
-rw-r--r--tools/hmac-sha1.h13
1 files changed, 3 insertions, 10 deletions
diff --git a/tools/hmac-sha1.h b/tools/hmac-sha1.h
index 149b5bac46..e5be1cfc38 100644
--- a/tools/hmac-sha1.h
+++ b/tools/hmac-sha1.h
@@ -70,15 +70,8 @@ int SHA1Input( SHA1Context *,
70int SHA1Result( SHA1Context *, 70int SHA1Result( SHA1Context *,
71 uint8_t Message_Digest[SHA1HashSize]); 71 uint8_t Message_Digest[SHA1HashSize]);
72 72
73void 73void hmac_sha(unsigned char* k, int lk,
74hmac_sha 74 unsigned char* d, int ld,
75( 75 unsigned char* out, int t);
76 char* k,
77 int lk,
78 char* d,
79 int ld,
80 char* out,
81 int t
82);
83 76
84#endif 77#endif