aboutsummaryrefslogtreecommitdiffstats
path: root/include/crypto/gf128mul.h
diff options
context:
space:
mode:
authorHarsh Jain <harsh@chelsio.com>2017-10-08 13:37:20 +0530
committerHerbert Xu <herbert@gondor.apana.org.au>2017-11-03 21:50:43 +0800
commitacfc587810bea08fdd62c9d5ed7cefe8be874a4f (patch)
tree88558523d44cdb6b56f37e0e19633a8fc5960466 /include/crypto/gf128mul.h
parentcrypto: chelsio - Check error code with IS_ERR macro (diff)
downloadlinux-dev-acfc587810bea08fdd62c9d5ed7cefe8be874a4f.tar.xz
linux-dev-acfc587810bea08fdd62c9d5ed7cefe8be874a4f.zip
crypto: gf128mul - The x8_ble multiplication functions
It multiply GF(2^128) elements in the ble format. It will be used by chelsio driver to speed up gf multiplication. Signed-off-by: Harsh Jain <harsh@chelsio.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/crypto/gf128mul.h')
-rw-r--r--include/crypto/gf128mul.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/crypto/gf128mul.h b/include/crypto/gf128mul.h
index 0977fb18ff68..fa0a63d298dc 100644
--- a/include/crypto/gf128mul.h
+++ b/include/crypto/gf128mul.h
@@ -227,7 +227,7 @@ struct gf128mul_4k *gf128mul_init_4k_lle(const be128 *g);
struct gf128mul_4k *gf128mul_init_4k_bbe(const be128 *g);
void gf128mul_4k_lle(be128 *a, const struct gf128mul_4k *t);
void gf128mul_4k_bbe(be128 *a, const struct gf128mul_4k *t);
-
+void gf128mul_x8_ble(le128 *r, const le128 *x);
static inline void gf128mul_free_4k(struct gf128mul_4k *t)
{
kzfree(t);