Skip to content

Commit

Permalink
crypto: akcipher - default implementations for request callbacks
Browse files Browse the repository at this point in the history
Because with the introduction of EC-RDSA and change in workings of RSA
in regard to sign/verify, akcipher could have not all callbacks defined,
check the presence of callbacks in crypto_register_akcipher() and
provide default implementation if the callback is not implemented.

This is suggested by Herbert Xu instead of checking the presence of the
callback on every request.

Signed-off-by: Vitaly Chikunov <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>
  • Loading branch information
vt-alt authored and herbertx committed Apr 18, 2019
1 parent 3c2bc63 commit 78a0324
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions crypto/akcipher.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,24 @@ static void akcipher_prepare_alg(struct akcipher_alg *alg)
base->cra_flags |= CRYPTO_ALG_TYPE_AKCIPHER;
}

static int akcipher_default_op(struct akcipher_request *req)
{
return -ENOSYS;
}

int crypto_register_akcipher(struct akcipher_alg *alg)
{
struct crypto_alg *base = &alg->base;

if (!alg->sign)
alg->sign = akcipher_default_op;
if (!alg->verify)
alg->verify = akcipher_default_op;
if (!alg->encrypt)
alg->encrypt = akcipher_default_op;
if (!alg->decrypt)
alg->decrypt = akcipher_default_op;

akcipher_prepare_alg(alg);
return crypto_register_alg(base);
}
Expand Down

0 comments on commit 78a0324

Please sign in to comment.