提交 1c23b466 编写于 作者: T Tudor-Dan Ambarus 提交者: Herbert Xu

crypto: rsa - comply with crypto_akcipher_maxsize()

crypto_akcipher_maxsize() asks for the output buffer size without
caring for errors. It allways assume that will be called after
a valid setkey. Comply with it and return what he wants.
Signed-off-by: NTudor Ambarus <tudor.ambarus@microchip.com>
Signed-off-by: NHerbert Xu <herbert@gondor.apana.org.au>
上级 561f8e2d
...@@ -337,11 +337,11 @@ static int rsa_set_priv_key(struct crypto_akcipher *tfm, const void *key, ...@@ -337,11 +337,11 @@ static int rsa_set_priv_key(struct crypto_akcipher *tfm, const void *key,
return -ENOMEM; return -ENOMEM;
} }
static int rsa_max_size(struct crypto_akcipher *tfm) static unsigned int rsa_max_size(struct crypto_akcipher *tfm)
{ {
struct rsa_mpi_key *pkey = akcipher_tfm_ctx(tfm); struct rsa_mpi_key *pkey = akcipher_tfm_ctx(tfm);
return pkey->n ? mpi_get_size(pkey->n) : -EINVAL; return mpi_get_size(pkey->n);
} }
static void rsa_exit_tfm(struct crypto_akcipher *tfm) static void rsa_exit_tfm(struct crypto_akcipher *tfm)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册