diff options
author | Hans de Goede <hdegoede@redhat.com> | 2019-08-17 16:24:31 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2019-08-22 14:57:35 +1000 |
commit | ad767ee858b38af634c957a792cb001d54a7b981 (patch) | |
tree | abc728ea04dca8c72d9529fbde034496d7aa5a28 /include | |
parent | 1a01333d313447f0cdfcc2882ea3afe387a24be0 (diff) | |
download | linux-ad767ee858b38af634c957a792cb001d54a7b981.tar.gz linux-ad767ee858b38af634c957a792cb001d54a7b981.tar.bz2 linux-ad767ee858b38af634c957a792cb001d54a7b981.zip |
crypto: sha256 - Move lib/sha256.c to lib/crypto
Generic crypto implementations belong under lib/crypto not directly in
lib, likewise the header should be in include/crypto, not include/linux.
Note that the code in lib/crypto/sha256.c is not yet available for
generic use after this commit, it is still only used by the s390 and x86
purgatory code. Making it suitable for generic use is done in further
patches in this series.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include')
-rw-r--r-- | include/crypto/sha256.h (renamed from include/linux/sha256.h) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/sha256.h b/include/crypto/sha256.h index 26972b9e92db..b1f9c6781082 100644 --- a/include/linux/sha256.h +++ b/include/crypto/sha256.h @@ -17,7 +17,7 @@ * kexec_file purgatory. In other cases you should use the implementation in * crypto/. * - * For details see lib/sha256.c + * For details see lib/crypto/sha256.c */ extern int sha256_init(struct sha256_state *sctx); |