crypto: sha1-mb - rename sha-mb to sha1-mb
authorMegha Dey <megha.dey@linux.intel.com>
Fri, 24 Jun 2016 01:40:48 +0000 (18:40 -0700)
committerHerbert Xu <herbert@gondor.apana.org.au>
Mon, 27 Jun 2016 08:57:47 +0000 (16:57 +0800)
commit4c79f6f81a23052e5d1f13a3e6e9aaf915621430
tree14f350686d0e028da130c1588a416d195d247b56
parent087bcd225c5656a0beac02739471085d000c9680
crypto: sha1-mb - rename sha-mb to sha1-mb

Until now, there was only support for the SHA1 multibuffer algorithm.
Hence, there was just one sha-mb folder. Now, with the introduction of
the SHA256 multi-buffer algorithm , it is logical to name the existing
folder as sha1-mb.

Signed-off-by: Megha Dey <megha.dey@linux.intel.com>
Reviewed-by: Fenghua Yu <fenghua.yu@intel.com>
Reviewed-by: Tim Chen <tim.c.chen@linux.intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
19 files changed:
arch/x86/crypto/Makefile
arch/x86/crypto/sha-mb/Makefile [deleted file]
arch/x86/crypto/sha-mb/sha1_mb.c [deleted file]
arch/x86/crypto/sha-mb/sha1_mb_mgr_datastruct.S [deleted file]
arch/x86/crypto/sha-mb/sha1_mb_mgr_flush_avx2.S [deleted file]
arch/x86/crypto/sha-mb/sha1_mb_mgr_init_avx2.c [deleted file]
arch/x86/crypto/sha-mb/sha1_mb_mgr_submit_avx2.S [deleted file]
arch/x86/crypto/sha-mb/sha1_x8_avx2.S [deleted file]
arch/x86/crypto/sha-mb/sha_mb_ctx.h [deleted file]
arch/x86/crypto/sha-mb/sha_mb_mgr.h [deleted file]
arch/x86/crypto/sha1-mb/Makefile [new file with mode: 0644]
arch/x86/crypto/sha1-mb/sha1_mb.c [new file with mode: 0644]
arch/x86/crypto/sha1-mb/sha1_mb_ctx.h [new file with mode: 0644]
arch/x86/crypto/sha1-mb/sha1_mb_mgr.h [new file with mode: 0644]
arch/x86/crypto/sha1-mb/sha1_mb_mgr_datastruct.S [new file with mode: 0644]
arch/x86/crypto/sha1-mb/sha1_mb_mgr_flush_avx2.S [new file with mode: 0644]
arch/x86/crypto/sha1-mb/sha1_mb_mgr_init_avx2.c [new file with mode: 0644]
arch/x86/crypto/sha1-mb/sha1_mb_mgr_submit_avx2.S [new file with mode: 0644]
arch/x86/crypto/sha1-mb/sha1_x8_avx2.S [new file with mode: 0644]