diff options
author | LABBE Corentin <clabbe.montjoie@gmail.com> | 2015-05-17 12:54:13 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2015-05-18 12:20:18 +0800 |
commit | 6a185016f4997b8b5c2dcf8162b7f48c22cc12f3 (patch) | |
tree | 75e0279ad233f260b7f5750520eef2d959a49810 /crypto/md5.c | |
parent | f79f1f7289b8e46763beedc9fd68f3072f1643e4 (diff) | |
download | blackbird-op-linux-6a185016f4997b8b5c2dcf8162b7f48c22cc12f3.tar.gz blackbird-op-linux-6a185016f4997b8b5c2dcf8162b7f48c22cc12f3.zip |
crypto: md5 - use md5 IV MD5_HX instead of their raw value
Since MD5 IV are now available in crypto/md5.h, use them.
Signed-off-by: LABBE Corentin <clabbe.montjoie@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/md5.c')
-rw-r--r-- | crypto/md5.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/md5.c b/crypto/md5.c index 36f5e5b103f3..33d17e9a8702 100644 --- a/crypto/md5.c +++ b/crypto/md5.c @@ -51,10 +51,10 @@ static int md5_init(struct shash_desc *desc) { struct md5_state *mctx = shash_desc_ctx(desc); - mctx->hash[0] = 0x67452301; - mctx->hash[1] = 0xefcdab89; - mctx->hash[2] = 0x98badcfe; - mctx->hash[3] = 0x10325476; + mctx->hash[0] = MD5_H0; + mctx->hash[1] = MD5_H1; + mctx->hash[2] = MD5_H2; + mctx->hash[3] = MD5_H3; mctx->byte_count = 0; return 0; |