diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2021-06-17 15:28:10 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2021-06-24 14:51:35 +0800 |
commit | 5163ab505e489400b4738b2a5547ec83d2dff7bb (patch) | |
tree | 0f7dad1ee8a811f84a03f0ecb52be6089938249d /include/crypto | |
parent | 74c66120fda6596ad57f41e1607b3a5d51ca143d (diff) |
crypto: api - Move crypto attr definitions out of crypto.h
The definitions for crypto_attr-related types and enums are not
needed by most Crypto API users. This patch moves them out of
crypto.h and into algapi.h/internal.h depending on the extent of
their use.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/crypto')
-rw-r--r-- | include/crypto/algapi.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/crypto/algapi.h b/include/crypto/algapi.h index 41d42e649da4..5f6841c73e5a 100644 --- a/include/crypto/algapi.h +++ b/include/crypto/algapi.h @@ -96,6 +96,15 @@ struct scatter_walk { unsigned int offset; }; +struct crypto_attr_alg { + char name[CRYPTO_MAX_ALG_NAME]; +}; + +struct crypto_attr_type { + u32 type; + u32 mask; +}; + void crypto_mod_put(struct crypto_alg *alg); int crypto_register_template(struct crypto_template *tmpl); |