summaryrefslogtreecommitdiff
path: root/cryptest.nmake
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-11-02 19:09:36 -0400
committerJeffrey Walton <noloader@gmail.com>2018-11-02 19:09:36 -0400
commit5dca85b81944969a64de072545e371c01ebbe348 (patch)
treecf3930bf1ba031b86f3f894a3a449c24246ccc62 /cryptest.nmake
parentd2b64a4d638920a545dc412776829e695776dac2 (diff)
downloadcryptopp-git-5dca85b81944969a64de072545e371c01ebbe348.tar.gz
Split Blake2 SIMD files into blake2s-simd.cpp and blake2b-simd.cpp (GH #729, GH #731)
The split was required for Blake2b and Power8; Blake2s only requires Power7
Diffstat (limited to 'cryptest.nmake')
-rw-r--r--cryptest.nmake8
1 files changed, 4 insertions, 4 deletions
diff --git a/cryptest.nmake b/cryptest.nmake
index 5464f567..0dc946ff 100644
--- a/cryptest.nmake
+++ b/cryptest.nmake
@@ -53,8 +53,8 @@
LIB_SRCS = \
cryptlib.cpp cpu.cpp integer.cpp 3way.cpp adler32.cpp algebra.cpp \
algparam.cpp arc4.cpp aria-simd.cpp aria.cpp ariatab.cpp asn.cpp \
- authenc.cpp base32.cpp base64.cpp basecode.cpp bfinit.cpp blake2-simd.cpp \
- blake2.cpp blowfish.cpp blumshub.cpp camellia.cpp cast.cpp casts.cpp \
+ authenc.cpp base32.cpp base64.cpp basecode.cpp bfinit.cpp blake2s-simd.cpp \
+ blake2b-simd.cpp blake2.cpp blowfish.cpp blumshub.cpp camellia.cpp cast.cpp casts.cpp \
cbcmac.cpp ccm.cpp chacha-simd.cpp chacha.cpp cham-simd.cpp cham.cpp channels.cpp \
cmac.cpp crc-simd.cpp crc.cpp default.cpp des.cpp dessp.cpp dh.cpp \
dh2.cpp dll.cpp dsa.cpp eax.cpp ec2n.cpp eccrypto.cpp ecp.cpp elgamal.cpp \
@@ -81,8 +81,8 @@ LIB_SRCS = \
LIB_OBJS = \
cryptlib.obj cpu.obj integer.obj 3way.obj adler32.obj algebra.obj \
algparam.obj arc4.obj aria-simd.obj aria.obj ariatab.obj asn.obj \
- authenc.obj base32.obj base64.obj basecode.obj bfinit.obj blake2-simd.obj \
- blake2.obj blowfish.obj blumshub.obj camellia.obj cast.obj casts.obj \
+ authenc.obj base32.obj base64.obj basecode.obj bfinit.obj blake2s-simd.obj \
+ blake2b-simd.obj blake2.obj blowfish.obj blumshub.obj camellia.obj cast.obj casts.obj \
cbcmac.obj ccm.obj chacha-simd.obj chacha.obj cham-simd.obj cham.obj channels.obj \
cmac.obj crc-simd.obj crc.obj default.obj des.obj dessp.obj dh.obj \
dh2.obj dll.obj dsa.obj eax.obj ec2n.obj eccrypto.obj ecp.obj elgamal.obj \