X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/2b645fb792c62ae0d38fcde4c39e1bd0889b0e06..dbfee00a86609283c4633df870692be3db9bc5e4:/Makefile.m4 diff --git a/Makefile.m4 b/Makefile.m4 index f2422f1..8185765 100644 --- a/Makefile.m4 +++ b/Makefile.m4 @@ -1,6 +1,6 @@ ## -*-makefile-*- ## -## $Id: Makefile.m4,v 1.60 2003/05/16 01:12:37 mdw Exp $ +## $Id: Makefile.m4,v 1.60.2.1 2003/06/10 13:43:53 mdw Exp $ ## ## Makefile for Catacomb ## @@ -29,6 +29,9 @@ ##----- Revision history ---------------------------------------------------- ## ## $Log: Makefile.m4,v $ +## Revision 1.60.2.1 2003/06/10 13:43:53 mdw +## Simple (non-projective) curves over prime fields now seem to work. +## ## Revision 1.60 2003/05/16 01:12:37 mdw ## Ship `rc2-tab.h' and `skipjack-tab.h'. ## @@ -301,7 +304,7 @@ BUILT_SOURCES = \ lib_LTLIBRARIES = libcatacomb.la -libcatacomb_la_LDFLAGS = -version-info 2:0:0 +libcatacomb_la_LDFLAGS = -version-info 3:0:1 ## Middle number is the patchlevel. Final number is the minor version. The ## difference between the first and last numbers is major version. @@ -311,7 +314,8 @@ pkginclude_HEADERS = \ lcrand.h fibrand.h rc4.h seal.h rand.h noise.h fipstest.h maurer.h \ key.h key-data.h passphrase.h pixie.h lmem.h \ mpx.h bitops.h mpw.h mpscan.h mparena.h mp.h mptext.h mpint.h \ - exp.h mpbarrett.h mpmont.h mpcrt.h mprand.h mpmul.h \ + exp.h mpbarrett.h mpbarrett-exp.h mpmont.h mpmont-exp.h \ + mpcrt.h mprand.h mpmul.h \ gfx.h \ primetab.h pfilt.h rabin.h \ pgen.h prim.h strongprime.h limlee.h keycheck.h \ @@ -319,6 +323,7 @@ pkginclude_HEADERS = \ oaep.h pkcs1.h pss.h tlsprf.h sslprf.h \ gfshare.h share.h \ rho.h \ + field.h ec.h ec-exp.h \ allwithsuffix(`ciphers', `cipher_modes', `.h') \ allwithsuffix(`hashes', `hash_modes', `.h') \ addsuffix(`cipher_modes', `-def.h') \ @@ -334,11 +339,14 @@ define(`MP_SOURCES', mpbarrett.c mpbarrett-mexp.c mpbarrett-exp.h \ mpmont.c mpmont-mexp.c mpmont-exp.h \ rho.c \ - GF_SOURCES PGEN_SOURCES') + GF_SOURCES PGEN_SOURCES EC_SOURCES') define(`GF_SOURCES', `gfx.c gfx-kmul.c gfx-sqr.c') +define(`EC_SOURCES', + `field.c f-prime.c ec.c ec-prime.c') + define(`PGEN_SOURCES', `pfilt.c rabin.c \ pgen.c pgen-stdev.c pgen-safe.c pgen-gcd.c prim.c strongprime.c \ @@ -504,6 +512,7 @@ CTESTRIG(mpcrt) CTESTRIG(mpmul) CTESTRIG(gfx) CTESTRIG(gfx-kmul) +CTESTRIG(ec-prime) CTESTRIG(pgen) CTESTRIG(dsa-gen) CTESTRIG(dsa-sign)