mirror of
https://github.com/torvalds/linux.git
synced 2026-09-25 21:21:09 -04:00
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 <[email protected]> Tested-by: Xufeng Zhang <[email protected]> Signed-off-by: Herbert Xu <[email protected]>
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
|