summaryrefslogtreecommitdiff
path: root/source4/lib/crypto/hmacsha1.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-08-11 08:02:43 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:15:28 -0500
commit0d235919fbb1430d52913df11da1f011a65ff319 (patch)
tree52f61b84020ad9ce5e0dc59d9f720c4e07b66fde /source4/lib/crypto/hmacsha1.c
parentb26f4472a71b2a60c8120bd1307dbbd1e499fcbe (diff)
downloadsamba-0d235919fbb1430d52913df11da1f011a65ff319.tar.gz
samba-0d235919fbb1430d52913df11da1f011a65ff319.tar.bz2
samba-0d235919fbb1430d52913df11da1f011a65ff319.zip
r17488: - add SHA1 and HMACSHA1 functions, based on rfc 2104,2202,3174
- and add torture tests also based on the rfc's metze (This used to be commit d48930a02f9560640697fd57e4bba03dc0abe284)
Diffstat (limited to 'source4/lib/crypto/hmacsha1.c')
-rw-r--r--source4/lib/crypto/hmacsha1.c87
1 files changed, 87 insertions, 0 deletions
diff --git a/source4/lib/crypto/hmacsha1.c b/source4/lib/crypto/hmacsha1.c
new file mode 100644
index 0000000000..c3d2ba403a
--- /dev/null
+++ b/source4/lib/crypto/hmacsha1.c
@@ -0,0 +1,87 @@
+/*
+ Unix SMB/CIFS implementation.
+ Interface header: HMAC SHA-1 code
+ Copyright (C) Stefan Metzmacher
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+*/
+
+/*
+ taken direct from rfc2202 implementation and modified for suitable use
+ */
+
+#include "includes.h"
+#include "lib/crypto/crypto.h"
+
+/***********************************************************************
+ the rfc 2104/2202 version of hmac_sha1 initialisation.
+***********************************************************************/
+_PUBLIC_ void hmac_sha1_init(const uint8_t *key, size_t key_len, struct HMACSHA1Context *ctx)
+{
+ int i;
+ uint8_t tk[SHA1HashSize];
+
+ /* if key is longer than 64 bytes reset it to key=MD5(key) */
+ if (key_len > 64)
+ {
+ struct SHA1Context tctx;
+
+ SHA1Init(&tctx);
+ SHA1Update(&tctx, key, key_len);
+ SHA1Final(tk, &tctx);
+
+ key = tk;
+ key_len = SHA1HashSize;
+ }
+
+ /* start out by storing key in pads */
+ ZERO_STRUCT(ctx->k_ipad);
+ ZERO_STRUCT(ctx->k_opad);
+ memcpy( ctx->k_ipad, key, key_len);
+ memcpy( ctx->k_opad, key, key_len);
+
+ /* XOR key with ipad and opad values */
+ for (i=0; i<64; i++)
+ {
+ ctx->k_ipad[i] ^= 0x36;
+ ctx->k_opad[i] ^= 0x5c;
+ }
+
+ SHA1Init(&ctx->ctx);
+ SHA1Update(&ctx->ctx, ctx->k_ipad, 64);
+}
+
+/***********************************************************************
+ update hmac_sha1 "inner" buffer
+***********************************************************************/
+_PUBLIC_ void hmac_sha1_update(const uint8_t *data, size_t data_len, struct HMACSHA1Context *ctx)
+{
+ SHA1Update(&ctx->ctx, data, data_len); /* then text of datagram */
+}
+
+/***********************************************************************
+ finish off hmac_sha1 "inner" buffer and generate outer one.
+***********************************************************************/
+_PUBLIC_ void hmac_sha1_final(uint8_t digest[SHA1HashSize], struct HMACSHA1Context *ctx)
+{
+ struct SHA1Context ctx_o;
+
+ SHA1Final(digest, &ctx->ctx);
+
+ SHA1Init(&ctx_o);
+ SHA1Update(&ctx_o, ctx->k_opad, 64);
+ SHA1Update(&ctx_o, digest, SHA1HashSize);
+ SHA1Final(digest, &ctx_o);
+}