crypto: skcipher - Add crypto_skcipher_has_setkey
This patch adds a way for skcipher users to determine whether a key is required by a transform. Cc: stable@vger.kernel.org Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
6de62f15b5
commit
a1383cd86a
2 changed files with 9 additions and 0 deletions
|
@ -61,6 +61,8 @@ struct crypto_skcipher {
|
|||
unsigned int ivsize;
|
||||
unsigned int reqsize;
|
||||
|
||||
bool has_setkey;
|
||||
|
||||
struct crypto_tfm base;
|
||||
};
|
||||
|
||||
|
@ -305,6 +307,11 @@ static inline int crypto_skcipher_setkey(struct crypto_skcipher *tfm,
|
|||
return tfm->setkey(tfm, key, keylen);
|
||||
}
|
||||
|
||||
static inline bool crypto_skcipher_has_setkey(struct crypto_skcipher *tfm)
|
||||
{
|
||||
return tfm->has_setkey;
|
||||
}
|
||||
|
||||
/**
|
||||
* crypto_skcipher_reqtfm() - obtain cipher handle from request
|
||||
* @req: skcipher_request out of which the cipher handle is to be obtained
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue