mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 15:50:53 +07:00
2793784307
This patch introduces a new in-kernel-crypto blockcipher called 'paes' which implements AES with protected keys. The paes blockcipher can be used similar to the aes blockcipher but uses secure key material to derive the working protected key and so offers an encryption implementation where never a clear key value is exposed in memory. The paes module is only available for the s390 platform providing a minimal hardware support of CPACF enabled with at least MSA level 3. Upon module initialization these requirements are checked. Includes additional contribution from Harald Freudenberger. Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
15 lines
500 B
Makefile
15 lines
500 B
Makefile
#
|
|
# Cryptographic API
|
|
#
|
|
|
|
obj-$(CONFIG_CRYPTO_SHA1_S390) += sha1_s390.o sha_common.o
|
|
obj-$(CONFIG_CRYPTO_SHA256_S390) += sha256_s390.o sha_common.o
|
|
obj-$(CONFIG_CRYPTO_SHA512_S390) += sha512_s390.o sha_common.o
|
|
obj-$(CONFIG_CRYPTO_DES_S390) += des_s390.o
|
|
obj-$(CONFIG_CRYPTO_AES_S390) += aes_s390.o paes_s390.o
|
|
obj-$(CONFIG_S390_PRNG) += prng.o
|
|
obj-$(CONFIG_CRYPTO_GHASH_S390) += ghash_s390.o
|
|
obj-$(CONFIG_CRYPTO_CRC32_S390) += crc32-vx_s390.o
|
|
|
|
crc32-vx_s390-y := crc32-vx.o crc32le-vx.o crc32be-vx.o
|