diff options
author | Steffen Klassert <steffen.klassert@secunet.com> | 2011-09-27 01:26:10 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2011-10-21 08:24:04 -0400 |
commit | f4d663ce6357e533f107ce3789bd8848c94bea81 (patch) | |
tree | dededa6ed501f8d6a0d141c4c94b72ec2395ea2c /include/linux/cryptouser.h | |
parent | 6c5a86f529a9e9ca4c9aca5fa477e9557d4a3d3d (diff) |
crypto: Add userspace report for shash type algorithms
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/linux/cryptouser.h')
-rw-r--r-- | include/linux/cryptouser.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/cryptouser.h b/include/linux/cryptouser.h index 7a849b4c3b82..ee4688221975 100644 --- a/include/linux/cryptouser.h +++ b/include/linux/cryptouser.h | |||
@@ -37,6 +37,7 @@ enum crypto_attr_type_t { | |||
37 | CRYPTOCFGA_UNSPEC, | 37 | CRYPTOCFGA_UNSPEC, |
38 | CRYPTOCFGA_PRIORITY_VAL, /* __u32 */ | 38 | CRYPTOCFGA_PRIORITY_VAL, /* __u32 */ |
39 | CRYPTOCFGA_REPORT_LARVAL, /* struct crypto_report_larval */ | 39 | CRYPTOCFGA_REPORT_LARVAL, /* struct crypto_report_larval */ |
40 | CRYPTOCFGA_REPORT_HASH, /* struct crypto_report_hash */ | ||
40 | __CRYPTOCFGA_MAX | 41 | __CRYPTOCFGA_MAX |
41 | 42 | ||
42 | #define CRYPTOCFGA_MAX (__CRYPTOCFGA_MAX - 1) | 43 | #define CRYPTOCFGA_MAX (__CRYPTOCFGA_MAX - 1) |
@@ -55,3 +56,9 @@ struct crypto_user_alg { | |||
55 | struct crypto_report_larval { | 56 | struct crypto_report_larval { |
56 | char type[CRYPTO_MAX_NAME]; | 57 | char type[CRYPTO_MAX_NAME]; |
57 | }; | 58 | }; |
59 | |||
60 | struct crypto_report_hash { | ||
61 | char type[CRYPTO_MAX_NAME]; | ||
62 | unsigned int blocksize; | ||
63 | unsigned int digestsize; | ||
64 | }; | ||