mirror of
https://github.com/openssl/openssl.git
synced 2025-01-07 17:53:38 +08:00
e9224c7177
key-generation and prime-checking functions. Rather than explicitly passing callback functions and caller-defined context data for the callbacks, a new structure BN_GENCB is defined that encapsulates this; a pointer to the structure is passed to all such functions instead. This wrapper structure allows the encapsulation of "old" and "new" style callbacks - "new" callbacks return a boolean result on the understanding that returning FALSE should terminate keygen/primality processing. The BN_GENCB abstraction will allow future callback modifications without needing to break binary compatibility nor change the API function prototypes. The new API functions have been given names ending in "_ex" and the old functions are implemented as wrappers to the new ones. The OPENSSL_NO_DEPRECATED symbol has been introduced so that, if defined, declaration of the older functions will be skipped. NB: Some openssl-internal code will stick with the older callbacks for now, so appropriate "#undef" logic will be put in place - this is in case the user is *building* openssl (rather than *including* its headers) with this symbol defined. There is another change in the new _ex functions; the key-generation functions do not return key structures but operate on structures passed by the caller, the return value is a boolean. This will allow for a smoother transition to having key-generation as "virtual function" in the various ***_METHOD tables.
183 lines
8.3 KiB
Makefile
183 lines
8.3 KiB
Makefile
#
|
|
# SSLeay/crypto/dsa/Makefile
|
|
#
|
|
|
|
DIR= dsa
|
|
TOP= ../..
|
|
CC= cc
|
|
INCLUDES= -I.. -I$(TOP) -I../../include
|
|
CFLAG=-g
|
|
INSTALL_PREFIX=
|
|
OPENSSLDIR= /usr/local/ssl
|
|
INSTALLTOP=/usr/local/ssl
|
|
MAKE= make -f Makefile.ssl
|
|
MAKEDEPPROG= makedepend
|
|
MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
|
|
MAKEFILE= Makefile.ssl
|
|
AR= ar r
|
|
|
|
CFLAGS= $(INCLUDES) $(CFLAG)
|
|
|
|
GENERAL=Makefile
|
|
TEST=dsatest.c
|
|
APPS=
|
|
|
|
LIB=$(TOP)/libcrypto.a
|
|
LIBSRC= dsa_gen.c dsa_key.c dsa_lib.c dsa_asn1.c dsa_vrf.c dsa_sign.c \
|
|
dsa_err.c dsa_ossl.c dsa_depr.c
|
|
LIBOBJ= dsa_gen.o dsa_key.o dsa_lib.o dsa_asn1.o dsa_vrf.o dsa_sign.o \
|
|
dsa_err.o dsa_ossl.o dsa_depr.o
|
|
|
|
SRC= $(LIBSRC)
|
|
|
|
EXHEADER= dsa.h
|
|
HEADER= $(EXHEADER)
|
|
|
|
ALL= $(GENERAL) $(SRC) $(HEADER)
|
|
|
|
top:
|
|
(cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
|
|
|
|
all: lib
|
|
|
|
lib: $(LIBOBJ)
|
|
$(AR) $(LIB) $(LIBOBJ)
|
|
$(RANLIB) $(LIB) || echo Never mind.
|
|
@touch lib
|
|
|
|
files:
|
|
$(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
|
|
|
|
links:
|
|
@$(TOP)/util/point.sh Makefile.ssl Makefile
|
|
@$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
|
|
@$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
|
|
@$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
|
|
|
|
install:
|
|
@for i in $(EXHEADER) ; \
|
|
do \
|
|
(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
|
|
chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
|
|
done;
|
|
|
|
tags:
|
|
ctags $(SRC)
|
|
|
|
tests:
|
|
|
|
lint:
|
|
lint -DLINT $(INCLUDES) $(SRC)>fluff
|
|
|
|
depend:
|
|
$(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
|
|
|
|
dclean:
|
|
$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
|
|
mv -f Makefile.new $(MAKEFILE)
|
|
|
|
clean:
|
|
rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
|
|
|
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
|
|
|
dsa_asn1.o: ../../e_os.h ../../include/openssl/asn1.h
|
|
dsa_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
|
|
dsa_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
|
dsa_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
|
|
dsa_asn1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
|
dsa_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
|
dsa_asn1.o: ../../include/openssl/opensslconf.h
|
|
dsa_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
|
dsa_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
|
dsa_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h dsa_asn1.c
|
|
dsa_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
|
dsa_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
|
|
dsa_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
|
dsa_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
|
dsa_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
|
dsa_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
|
|
dsa_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
|
dsa_err.o: dsa_err.c
|
|
dsa_gen.o: ../../e_os.h ../../include/openssl/aes.h
|
|
dsa_gen.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
|
|
dsa_gen.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h
|
|
dsa_gen.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h
|
|
dsa_gen.o: ../../include/openssl/crypto.h ../../include/openssl/des.h
|
|
dsa_gen.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h
|
|
dsa_gen.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
|
dsa_gen.o: ../../include/openssl/err.h ../../include/openssl/evp.h
|
|
dsa_gen.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h
|
|
dsa_gen.o: ../../include/openssl/md2.h ../../include/openssl/md4.h
|
|
dsa_gen.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h
|
|
dsa_gen.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
|
|
dsa_gen.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
|
dsa_gen.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
|
dsa_gen.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h
|
|
dsa_gen.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h
|
|
dsa_gen.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
|
dsa_gen.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
|
|
dsa_gen.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
|
dsa_gen.o: ../../include/openssl/ui_compat.h ../cryptlib.h dsa_gen.c
|
|
dsa_key.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h
|
|
dsa_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
|
dsa_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
|
dsa_key.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
|
|
dsa_key.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
|
dsa_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
|
dsa_key.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
|
|
dsa_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
|
dsa_key.o: ../cryptlib.h dsa_key.c
|
|
dsa_lib.o: ../../e_os.h ../../include/openssl/asn1.h
|
|
dsa_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
|
dsa_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
|
dsa_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
|
dsa_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
|
dsa_lib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
|
dsa_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
|
dsa_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
|
dsa_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
|
dsa_lib.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
|
dsa_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
|
dsa_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
|
dsa_lib.o: ../cryptlib.h dsa_lib.c
|
|
dsa_ossl.o: ../../e_os.h ../../include/openssl/asn1.h
|
|
dsa_ossl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
|
dsa_ossl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
|
dsa_ossl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
|
dsa_ossl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
|
dsa_ossl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
|
dsa_ossl.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
|
dsa_ossl.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
|
dsa_ossl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
|
dsa_ossl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
|
dsa_ossl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
|
dsa_ossl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
|
dsa_ossl.o: ../cryptlib.h dsa_ossl.c
|
|
dsa_sign.o: ../../e_os.h ../../include/openssl/asn1.h
|
|
dsa_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
|
|
dsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
|
|
dsa_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
|
|
dsa_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h
|
|
dsa_sign.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h
|
|
dsa_sign.o: ../../include/openssl/engine.h ../../include/openssl/err.h
|
|
dsa_sign.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
|
|
dsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
|
|
dsa_sign.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
|
|
dsa_sign.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
|
|
dsa_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h
|
|
dsa_sign.o: ../cryptlib.h dsa_sign.c
|
|
dsa_vrf.o: ../../e_os.h ../../include/openssl/asn1.h
|
|
dsa_vrf.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
|
|
dsa_vrf.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
|
|
dsa_vrf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
|
|
dsa_vrf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
|
|
dsa_vrf.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h
|
|
dsa_vrf.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h
|
|
dsa_vrf.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
|
|
dsa_vrf.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
|
|
dsa_vrf.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
|
|
dsa_vrf.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
|
|
dsa_vrf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
|
|
dsa_vrf.o: ../../include/openssl/ui.h ../cryptlib.h dsa_vrf.c
|