mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
d58bb7e55a
The implementation of EC is introduced from libgcrypt as the basic algorithm of elliptic curve, which can be more perfectly integrated with MPI implementation. Some other algorithms will be developed based on mpi ecc, such as SM2. Signed-off-by: Tianjia Zhang <tianjia.zhang@linux.alibaba.com> Tested-by: Xufeng Zhang <yunbo.xufeng@linux.alibaba.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
31 lines
522 B
Makefile
31 lines
522 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# MPI multiprecision maths library (from gpg)
|
|
#
|
|
|
|
obj-$(CONFIG_MPILIB) = mpi.o
|
|
|
|
mpi-y = \
|
|
generic_mpih-lshift.o \
|
|
generic_mpih-mul1.o \
|
|
generic_mpih-mul2.o \
|
|
generic_mpih-mul3.o \
|
|
generic_mpih-rshift.o \
|
|
generic_mpih-sub1.o \
|
|
generic_mpih-add1.o \
|
|
ec.o \
|
|
mpicoder.o \
|
|
mpi-add.o \
|
|
mpi-bit.o \
|
|
mpi-cmp.o \
|
|
mpi-sub-ui.o \
|
|
mpi-div.o \
|
|
mpi-inv.o \
|
|
mpi-mod.o \
|
|
mpi-mul.o \
|
|
mpih-cmp.o \
|
|
mpih-div.o \
|
|
mpih-mul.o \
|
|
mpi-pow.o \
|
|
mpiutil.o
|