diff options
author | David Hildenbrand <david@redhat.com> | 2020-09-28 14:27:17 +0200 |
---|---|---|
committer | Cornelia Huck <cohuck@redhat.com> | 2020-10-02 13:52:49 +0200 |
commit | be2b567018d987591647935a7c9648e9c45e05e8 (patch) | |
tree | bb008bdc6bdc2ff1b3c7b30e2f37848aef1fa4d2 /target/s390x/gen-features.c | |
parent | e0f28bb210e4d07fba739ff6433f0d72835d88a5 (diff) | |
download | qemu-be2b567018d987591647935a7c9648e9c45e05e8.zip qemu-be2b567018d987591647935a7c9648e9c45e05e8.tar.gz qemu-be2b567018d987591647935a7c9648e9c45e05e8.tar.bz2 |
s390x/tcg: Implement CIPHER MESSAGE WITH AUTHENTICATION (KMA)
As with the other crypto functions, we only implement subcode 0 (query)
and no actual encryption/decryption. We now implement S390_FEAT_MSA_EXT_8.
Signed-off-by: David Hildenbrand <david@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20200928122717.30586-10-david@redhat.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
Diffstat (limited to 'target/s390x/gen-features.c')
-rw-r--r-- | target/s390x/gen-features.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/s390x/gen-features.c b/target/s390x/gen-features.c index 02ec0a67..a6ec918 100644 --- a/target/s390x/gen-features.c +++ b/target/s390x/gen-features.c @@ -719,6 +719,7 @@ static uint16_t qemu_MAX[] = { /* features introduced after the z13 */ S390_FEAT_INSTRUCTION_EXEC_PROT, S390_FEAT_MISC_INSTRUCTION_EXT2, + S390_FEAT_MSA_EXT_8, }; /****** END FEATURE DEFS ******/ |