]> git.kernelconcepts.de Git - karo-tx-linux.git/blobdiff - crypto/rsa.c
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid
[karo-tx-linux.git] / crypto / rsa.c
index 4c280b6a3ea9c0a3148424b654739f2c747818f5..b067f3a9388055c0b85ec52f5928af9cd6489b31 100644 (file)
@@ -337,11 +337,11 @@ err:
        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);
 
-       return pkey->n ? mpi_get_size(pkey->n) : -EINVAL;
+       return mpi_get_size(pkey->n);
 }
 
 static void rsa_exit_tfm(struct crypto_akcipher *tfm)