aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/md5.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/cifs/md5.c')
-rw-r--r--fs/cifs/md5.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/md5.c b/fs/cifs/md5.c
index 7aa23490541f..273aa0383f27 100644
--- a/fs/cifs/md5.c
+++ b/fs/cifs/md5.c
@@ -255,7 +255,7 @@ MD5Transform(__u32 buf[4], __u32 const in[16])
255/*********************************************************************** 255/***********************************************************************
256 the rfc 2104 version of hmac_md5 initialisation. 256 the rfc 2104 version of hmac_md5 initialisation.
257***********************************************************************/ 257***********************************************************************/
258void 258static void
259hmac_md5_init_rfc2104(unsigned char *key, int key_len, 259hmac_md5_init_rfc2104(unsigned char *key, int key_len,
260 struct HMACMD5Context *ctx) 260 struct HMACMD5Context *ctx)
261{ 261{
@@ -350,7 +350,7 @@ hmac_md5_final(unsigned char *digest, struct HMACMD5Context *ctx)
350 single function to calculate an HMAC MD5 digest from data. 350 single function to calculate an HMAC MD5 digest from data.
351 use the microsoft hmacmd5 init method because the key is 16 bytes. 351 use the microsoft hmacmd5 init method because the key is 16 bytes.
352************************************************************/ 352************************************************************/
353void 353static void
354hmac_md5(unsigned char key[16], unsigned char *data, int data_len, 354hmac_md5(unsigned char key[16], unsigned char *data, int data_len,
355 unsigned char *digest) 355 unsigned char *digest)
356{ 356{