blob: 419f2379b406b3aaf0eba47d217c392ae1910852 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Cryptographic API.
3 *
4 * MD5 Message Digest Algorithm (RFC1321).
5 *
6 * Derived from cryptoapi implementation, originally based on the
7 * public domain implementation written by Colin Plumb in 1993.
8 *
9 * Copyright (c) Cryptoapi developers.
10 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
11 *
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the Free
14 * Software Foundation; either version 2 of the License, or (at your option)
15 * any later version.
16 *
17 */
Adrian-Ken Rueegsegger14b75ba2008-12-03 19:57:12 +080018#include <crypto/internal/hash.h>
Max Vozeler7d6f75e2010-01-17 21:55:31 +110019#include <crypto/md5.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/init.h>
21#include <linux/module.h>
22#include <linux/string.h>
Herbert Xu06ace7a2005-10-30 21:25:15 +110023#include <linux/types.h>
David S. Millerbc0b96b2011-08-03 19:45:10 -070024#include <linux/cryptohash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/byteorder.h>
26
LABBE Corentin0c4c78d2015-12-17 13:45:39 +010027const u8 md5_zero_message_hash[MD5_DIGEST_SIZE] = {
28 0xd4, 0x1d, 0x8c, 0xd9, 0x8f, 0x00, 0xb2, 0x04,
29 0xe9, 0x80, 0x09, 0x98, 0xec, 0xf8, 0x42, 0x7e,
30};
31EXPORT_SYMBOL_GPL(md5_zero_message_hash);
32
Max Vozeler7d6f75e2010-01-17 21:55:31 +110033static inline void md5_transform_helper(struct md5_state *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034{
35 le32_to_cpu_array(ctx->block, sizeof(ctx->block) / sizeof(u32));
36 md5_transform(ctx->hash, ctx->block);
37}
38
Adrian-Ken Rueegsegger14b75ba2008-12-03 19:57:12 +080039static int md5_init(struct shash_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040{
Max Vozeler7d6f75e2010-01-17 21:55:31 +110041 struct md5_state *mctx = shash_desc_ctx(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
LABBE Corentin6a185012015-05-17 12:54:13 +020043 mctx->hash[0] = MD5_H0;
44 mctx->hash[1] = MD5_H1;
45 mctx->hash[2] = MD5_H2;
46 mctx->hash[3] = MD5_H3;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 mctx->byte_count = 0;
Adrian-Ken Rueegsegger14b75ba2008-12-03 19:57:12 +080048
49 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050}
51
Adrian-Ken Rueegsegger14b75ba2008-12-03 19:57:12 +080052static int md5_update(struct shash_desc *desc, const u8 *data, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053{
Max Vozeler7d6f75e2010-01-17 21:55:31 +110054 struct md5_state *mctx = shash_desc_ctx(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 const u32 avail = sizeof(mctx->block) - (mctx->byte_count & 0x3f);
56
57 mctx->byte_count += len;
58
59 if (avail > len) {
60 memcpy((char *)mctx->block + (sizeof(mctx->block) - avail),
61 data, len);
Adrian-Ken Rueegsegger14b75ba2008-12-03 19:57:12 +080062 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 }
64
65 memcpy((char *)mctx->block + (sizeof(mctx->block) - avail),
66 data, avail);
67
68 md5_transform_helper(mctx);
69 data += avail;
70 len -= avail;
71
72 while (len >= sizeof(mctx->block)) {
73 memcpy(mctx->block, data, sizeof(mctx->block));
74 md5_transform_helper(mctx);
75 data += sizeof(mctx->block);
76 len -= sizeof(mctx->block);
77 }
78
79 memcpy(mctx->block, data, len);
Adrian-Ken Rueegsegger14b75ba2008-12-03 19:57:12 +080080
81 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
Adrian-Ken Rueegsegger14b75ba2008-12-03 19:57:12 +080084static int md5_final(struct shash_desc *desc, u8 *out)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Max Vozeler7d6f75e2010-01-17 21:55:31 +110086 struct md5_state *mctx = shash_desc_ctx(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 const unsigned int offset = mctx->byte_count & 0x3f;
88 char *p = (char *)mctx->block + offset;
89 int padding = 56 - (offset + 1);
90
91 *p++ = 0x80;
92 if (padding < 0) {
93 memset(p, 0x00, padding + sizeof (u64));
94 md5_transform_helper(mctx);
95 p = (char *)mctx->block;
96 padding = 56;
97 }
98
99 memset(p, 0, padding);
100 mctx->block[14] = mctx->byte_count << 3;
101 mctx->block[15] = mctx->byte_count >> 29;
102 le32_to_cpu_array(mctx->block, (sizeof(mctx->block) -
103 sizeof(u64)) / sizeof(u32));
104 md5_transform(mctx->hash, mctx->block);
105 cpu_to_le32_array(mctx->hash, sizeof(mctx->hash) / sizeof(u32));
106 memcpy(out, mctx->hash, sizeof(mctx->hash));
107 memset(mctx, 0, sizeof(*mctx));
Adrian-Ken Rueegsegger14b75ba2008-12-03 19:57:12 +0800108
109 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
Max Vozeler7d6f75e2010-01-17 21:55:31 +1100112static int md5_export(struct shash_desc *desc, void *out)
113{
114 struct md5_state *ctx = shash_desc_ctx(desc);
115
116 memcpy(out, ctx, sizeof(*ctx));
117 return 0;
118}
119
120static int md5_import(struct shash_desc *desc, const void *in)
121{
122 struct md5_state *ctx = shash_desc_ctx(desc);
123
124 memcpy(ctx, in, sizeof(*ctx));
125 return 0;
126}
127
Adrian-Ken Rueegsegger14b75ba2008-12-03 19:57:12 +0800128static struct shash_alg alg = {
129 .digestsize = MD5_DIGEST_SIZE,
130 .init = md5_init,
131 .update = md5_update,
132 .final = md5_final,
Max Vozeler7d6f75e2010-01-17 21:55:31 +1100133 .export = md5_export,
134 .import = md5_import,
135 .descsize = sizeof(struct md5_state),
Herbert Xueebb1112010-03-02 21:58:16 +0800136 .statesize = sizeof(struct md5_state),
Adrian-Ken Rueegsegger14b75ba2008-12-03 19:57:12 +0800137 .base = {
138 .cra_name = "md5",
139 .cra_flags = CRYPTO_ALG_TYPE_SHASH,
140 .cra_blocksize = MD5_HMAC_BLOCK_SIZE,
141 .cra_module = THIS_MODULE,
142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143};
144
Kamalesh Babulal3af5b902008-04-05 21:00:57 +0800145static int __init md5_mod_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Adrian-Ken Rueegsegger14b75ba2008-12-03 19:57:12 +0800147 return crypto_register_shash(&alg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Kamalesh Babulal3af5b902008-04-05 21:00:57 +0800150static void __exit md5_mod_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
Adrian-Ken Rueegsegger14b75ba2008-12-03 19:57:12 +0800152 crypto_unregister_shash(&alg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
Kamalesh Babulal3af5b902008-04-05 21:00:57 +0800155module_init(md5_mod_init);
156module_exit(md5_mod_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158MODULE_LICENSE("GPL");
159MODULE_DESCRIPTION("MD5 Message Digest Algorithm");
Kees Cook5d26a102014-11-20 17:05:53 -0800160MODULE_ALIAS_CRYPTO("md5");