diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2020-01-16 15:17:08 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2020-01-16 15:17:08 +0800 |
commit | e3419426f2ca9416590650790bc20b3884348864 (patch) | |
tree | 20edd051c24f6da2c6b4090680232ec7eb9704d6 /arch/arm/crypto | |
parent | b279997f6c60ab05b5548f2e22c11501be799369 (diff) | |
parent | cb1eeb75cf3dd84ced81333967200583993dfd73 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
Merge crypto tree to pick up hisilicon patch.
Diffstat (limited to 'arch/arm/crypto')
-rw-r--r-- | arch/arm/crypto/curve25519-glue.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/crypto/curve25519-glue.c b/arch/arm/crypto/curve25519-glue.c index f3f42cf3b893..776ae07e0469 100644 --- a/arch/arm/crypto/curve25519-glue.c +++ b/arch/arm/crypto/curve25519-glue.c @@ -38,6 +38,13 @@ void curve25519_arch(u8 out[CURVE25519_KEY_SIZE], } EXPORT_SYMBOL(curve25519_arch); +void curve25519_base_arch(u8 pub[CURVE25519_KEY_SIZE], + const u8 secret[CURVE25519_KEY_SIZE]) +{ + return curve25519_arch(pub, secret, curve25519_base_point); +} +EXPORT_SYMBOL(curve25519_base_arch); + static int curve25519_set_secret(struct crypto_kpp *tfm, const void *buf, unsigned int len) { |