aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/testmgr.h
diff options
context:
space:
mode:
authorLABBE Corentin <clabbe.montjoie@gmail.com>2015-06-05 11:39:22 +0200
committerHerbert Xu <herbert@gondor.apana.org.au>2015-06-09 22:22:00 +0800
commita7eed15627795b60c57da48051826ecca5e9fa93 (patch)
tree936d63b27465c742a140a6bac1c7f5a137646e9e /crypto/testmgr.h
parentcrypto: doc - Fix typo in crypto-API.xml (diff)
downloadlinux-dev-a7eed15627795b60c57da48051826ecca5e9fa93.tar.xz
linux-dev-a7eed15627795b60c57da48051826ecca5e9fa93.zip
crypto: testmgr - Document struct cipher_testvec
Signed-off-by: LABBE Corentin <clabbe.montjoie@gmail.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/testmgr.h')
-rw-r--r--crypto/testmgr.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/crypto/testmgr.h b/crypto/testmgr.h
index 4d98e401852a..4c2b3e57defa 100644
--- a/crypto/testmgr.h
+++ b/crypto/testmgr.h
@@ -46,6 +46,24 @@ struct hash_testvec {
unsigned char ksize;
};
+/*
+ * cipher_testvec: structure to describe a cipher test
+ * @key: A pointer to a key used by the test
+ * @klen: The length of @key
+ * @iv: A pointer to the IV used by the test
+ * @input: A pointer to data used as input
+ * @ilen The length of data in @input
+ * @result: A pointer to what the test need to produce
+ * @rlen: The length of data in @result
+ * @fail: If set to one, the test need to fail
+ * @wk: Does the test need CRYPTO_TFM_REQ_WEAK_KEY
+ * ( e.g. test needs to fail due to a weak key )
+ * @np: numbers of SG to distribute data in (from 1 to MAX_TAP)
+ * @tap: How to distribute data in @np SGs
+ * @also_non_np: if set to 1, the test will be also done without
+ * splitting data in @np SGs
+ */
+
struct cipher_testvec {
char *key;
char *iv;