[CRYPTO] api: Fixed incorrect passing of context instead of tfm
Fix a few omissions in passing TFM instead of CTX to algorithms.
Signed-off-by: Michal Ludvig <michal@logix.cz>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
diff --git a/crypto/compress.c b/crypto/compress.c
index c12fc0c..f3e0733 100644
--- a/crypto/compress.c
+++ b/crypto/compress.c
@@ -44,7 +44,7 @@
int ret = 0;
struct compress_tfm *ops = &tfm->crt_compress;
- ret = tfm->__crt_alg->cra_compress.coa_init(crypto_tfm_ctx(tfm));
+ ret = tfm->__crt_alg->cra_compress.coa_init(tfm);
if (ret)
goto out;
@@ -57,5 +57,5 @@
void crypto_exit_compress_ops(struct crypto_tfm *tfm)
{
- tfm->__crt_alg->cra_compress.coa_exit(crypto_tfm_ctx(tfm));
+ tfm->__crt_alg->cra_compress.coa_exit(tfm);
}
diff --git a/crypto/digest.c b/crypto/digest.c
index 2d9d509..603006a 100644
--- a/crypto/digest.c
+++ b/crypto/digest.c
@@ -70,10 +70,10 @@
unsigned int size = crypto_tfm_alg_digestsize(tfm);
u8 buffer[size + alignmask];
u8 *dst = (u8 *)ALIGN((unsigned long)buffer, alignmask + 1);
- tfm->__crt_alg->cra_digest.dia_final(crypto_tfm_ctx(tfm), dst);
+ tfm->__crt_alg->cra_digest.dia_final(tfm, dst);
memcpy(out, dst, size);
} else
- tfm->__crt_alg->cra_digest.dia_final(crypto_tfm_ctx(tfm), out);
+ tfm->__crt_alg->cra_digest.dia_final(tfm, out);
}
static int setkey(struct crypto_tfm *tfm, const u8 *key, unsigned int keylen)