summaryrefslogtreecommitdiff
path: root/crypto/testmgr.h
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2025-05-23 17:20:59 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2025-05-23 17:20:59 +0800
commit35de409aa30269a3b106fe957a95f7a2b7e21a60 (patch)
tree4d4b2a319479621efcf7f7358d88d94da30f121e /crypto/testmgr.h
parent0413bcf0fc460a68a2a7a8354aee833293d7d693 (diff)
Revert "crypto: testmgr - Add hash export format testing"
This reverts commit 18c438b228558e05ede7dccf947a6547516fc0c7. The s390 hmac and sha3 algorithms are failing the test. Revert the change until they have been fixed. Reported-by: Ingo Franzki <ifranzki@linux.ibm.com> Link: https://lore.kernel.org/all/623a7fcb-b4cb-48e6-9833-57ad2b32a252@linux.ibm.com/ Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/testmgr.h')
-rw-r--r--crypto/testmgr.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/crypto/testmgr.h b/crypto/testmgr.h
index 5cf455a708b8..32d099ac9e73 100644
--- a/crypto/testmgr.h
+++ b/crypto/testmgr.h
@@ -29,7 +29,6 @@
* hash_testvec: structure to describe a hash (message digest) test
* @key: Pointer to key (NULL if none)
* @plaintext: Pointer to source data
- * @state: Pointer to expected state
* @digest: Pointer to expected digest
* @psize: Length of source data in bytes
* @ksize: Length of @key in bytes (0 if no key)
@@ -40,7 +39,6 @@
struct hash_testvec {
const char *key;
const char *plaintext;
- const char *state;
const char *digest;
unsigned int psize;
unsigned short ksize;