428 lines
9.6 KiB
Makefile
428 lines
9.6 KiB
Makefile
# $Id$
|
|
|
|
include $(top_srcdir)/Makefile.am.common
|
|
|
|
AUTOMAKE_OPTIONS = subdir-objects
|
|
|
|
if HAVE_HCRYPTO_W_OPENSSL
|
|
AM_CPPFLAGS += $(INCLUDE_openssl_crypto)
|
|
endif
|
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/lib/hx509 \
|
|
-I$(srcdir)/libtommath -DUSE_HCRYPTO_LTM=1 \
|
|
-I$(srcdir)/x25519 \
|
|
-I$(srcdir)/..
|
|
|
|
WFLAGS += $(WFLAGS_LITE) -Wno-error=unused-function
|
|
# XXX: Make these not necessary:
|
|
WFLAGS += -Wno-error=unused-result -Wno-error=deprecated-declarations
|
|
WFLAGS += $(WFLAGS_UNUSED_BUT_SET_VAR)
|
|
|
|
lib_LTLIBRARIES = libhcrypto.la
|
|
check_LTLIBRARIES = libhctest.la
|
|
|
|
libhcrypto_la_LDFLAGS = -version-info 5:0:1
|
|
libhcrypto_la_LIBADD = \
|
|
$(top_builddir)/lib/asn1/libasn1.la \
|
|
$(LIB_dlopen) \
|
|
$(LIB_heimbase) \
|
|
$(LIBADD_roken)
|
|
|
|
if HAVE_HCRYPTO_W_OPENSSL
|
|
libhcrypto_la_LIBADD += $(LIB_openssl_crypto)
|
|
endif
|
|
|
|
hcryptoincludedir = $(includedir)/hcrypto
|
|
buildhcryptoinclude = $(buildinclude)/hcrypto
|
|
|
|
hcryptoinclude_HEADERS = \
|
|
aes.h \
|
|
bn.h \
|
|
des.h \
|
|
dh.h \
|
|
dsa.h \
|
|
ec.h \
|
|
ecdh.h \
|
|
ecdsa.h \
|
|
engine.h \
|
|
evp.h \
|
|
evp-hcrypto.h \
|
|
evp-cc.h \
|
|
evp-openssl.h \
|
|
evp-pkcs11.h \
|
|
hmac.h \
|
|
md2.h \
|
|
md4.h \
|
|
md5.h \
|
|
pkcs12.h \
|
|
rand.h \
|
|
rc2.h \
|
|
rc4.h \
|
|
rsa.h \
|
|
sha.h \
|
|
ui.h \
|
|
undef.h
|
|
|
|
install-build-headers:: $(hcryptoinclude_HEADERS) $(x25519include_HEADERS)
|
|
@foo='$(hcryptoinclude_HEADERS)'; \
|
|
for f in $$foo; do \
|
|
f=`basename $$f`; \
|
|
if test -f "$(srcdir)/$$f"; then file="$(srcdir)/$$f"; \
|
|
else file="$$f"; fi; \
|
|
if cmp -s $$file $(buildhcryptoinclude)/$$f 2> /dev/null ; then \
|
|
: ; else \
|
|
echo "cp $$file $(buildhcryptoinclude)/$$f";\
|
|
cp $$file $(buildhcryptoinclude)/$$f; \
|
|
fi ; \
|
|
done
|
|
|
|
PROGRAM_TESTS = \
|
|
destest \
|
|
mdtest \
|
|
rc2test \
|
|
rctest \
|
|
test_bn \
|
|
test_bulk \
|
|
test_cipher \
|
|
test_engine_dso \
|
|
test_hmac \
|
|
test_pkcs12 \
|
|
test_pkcs5
|
|
|
|
libhctest_la_SOURCES = \
|
|
des-tables.h \
|
|
des.c \
|
|
des.h \
|
|
ui.c \
|
|
ui.h
|
|
|
|
destest_LDADD = libhctest.la $(LIB_roken)
|
|
|
|
SCRIPT_TESTS = \
|
|
test_crypto
|
|
|
|
noinst_PROGRAMS = test_rand
|
|
|
|
noinst_HEADERS = \
|
|
x25519/ed25519_ref10_fe_51.h \
|
|
x25519/ed25519_ref10_fe_25_5.h \
|
|
x25519/ed25519_ref10.h \
|
|
x25519/fe_25_5/base.h \
|
|
x25519/fe_25_5/base2.h \
|
|
x25519/fe_25_5/constants.h \
|
|
x25519/fe_25_5/fe.h \
|
|
x25519/fe_51/base.h \
|
|
x25519/fe_51/base2.h \
|
|
x25519/fe_51/constants.h \
|
|
x25519/fe_51/fe.h \
|
|
x25519/align.h \
|
|
x25519_ref10.h
|
|
|
|
|
|
check_PROGRAMS = $(PROGRAM_TESTS) test_rsa test_dh example_evp_cipher
|
|
check_SCRIPTS = $(SCRIPT_TESTS)
|
|
|
|
TESTS = $(PROGRAM_TESTS) $(SCRIPT_TESTS)
|
|
|
|
LDADD = $(lib_LTLIBRARIES) $(LIB_roken) $(LIB_openssl_crypto)
|
|
test_rand_LDADD = $(LDADD) -lm
|
|
|
|
libhcrypto_la_SOURCES = \
|
|
$(ltmsources) \
|
|
$(x25519sources)\
|
|
aes.c \
|
|
aes.h \
|
|
bn.c \
|
|
bn.h \
|
|
common.c \
|
|
common.h \
|
|
camellia.h \
|
|
camellia.c \
|
|
camellia-ntt.c \
|
|
camellia-ntt.h \
|
|
des-tables.h \
|
|
des.c \
|
|
des.h \
|
|
dh.c \
|
|
dh.h \
|
|
dh-ltm.c \
|
|
dsa.c \
|
|
dsa.h \
|
|
doxygen.c \
|
|
evp.c \
|
|
evp.h \
|
|
evp-hcrypto.c \
|
|
evp-cc.c \
|
|
evp-openssl.c \
|
|
evp-pkcs11.c \
|
|
engine.c \
|
|
engine.h \
|
|
hash.h \
|
|
hmac.c \
|
|
hmac.h \
|
|
md2.c \
|
|
md2.h \
|
|
md4.c \
|
|
md4.h \
|
|
md5.c \
|
|
md5.h \
|
|
pkcs5.c \
|
|
pkcs12.c \
|
|
rand-fortuna.c \
|
|
rand-timer.c \
|
|
rand-unix.c \
|
|
rand.c \
|
|
rand.h \
|
|
randi.h \
|
|
rc2.c \
|
|
rc2.h \
|
|
rc4.c \
|
|
rc4.h \
|
|
rijndael-alg-fst.c \
|
|
rijndael-alg-fst.h \
|
|
rnd_keys.c \
|
|
rsa.c \
|
|
rsa-gmp.c \
|
|
rsa-ltm.c \
|
|
rsa.h \
|
|
sha.c \
|
|
sha.h \
|
|
sha256.c \
|
|
sha512.c \
|
|
validate.c \
|
|
ui.c \
|
|
ui.h \
|
|
undef.h
|
|
|
|
ltmsources = \
|
|
libtommath/bn_cutoffs.c \
|
|
libtommath/bn_deprecated.c \
|
|
libtommath/bn_mp_2expt.c \
|
|
libtommath/bn_mp_abs.c \
|
|
libtommath/bn_mp_add.c \
|
|
libtommath/bn_mp_add_d.c \
|
|
libtommath/bn_mp_addmod.c \
|
|
libtommath/bn_mp_and.c \
|
|
libtommath/bn_mp_clamp.c \
|
|
libtommath/bn_mp_clear.c \
|
|
libtommath/bn_mp_clear_multi.c \
|
|
libtommath/bn_mp_cmp.c \
|
|
libtommath/bn_mp_cmp_d.c \
|
|
libtommath/bn_mp_cmp_mag.c \
|
|
libtommath/bn_mp_cnt_lsb.c \
|
|
libtommath/bn_mp_complement.c \
|
|
libtommath/bn_mp_copy.c \
|
|
libtommath/bn_mp_count_bits.c \
|
|
libtommath/bn_mp_decr.c \
|
|
libtommath/bn_mp_div.c \
|
|
libtommath/bn_mp_div_2.c \
|
|
libtommath/bn_mp_div_2d.c \
|
|
libtommath/bn_mp_div_3.c \
|
|
libtommath/bn_mp_div_d.c \
|
|
libtommath/bn_mp_dr_is_modulus.c \
|
|
libtommath/bn_mp_dr_reduce.c \
|
|
libtommath/bn_mp_dr_setup.c \
|
|
libtommath/bn_mp_error_to_string.c \
|
|
libtommath/bn_mp_exch.c \
|
|
libtommath/bn_mp_expt_u32.c \
|
|
libtommath/bn_mp_exptmod.c \
|
|
libtommath/bn_mp_exteuclid.c \
|
|
libtommath/bn_mp_fread.c \
|
|
libtommath/bn_mp_from_sbin.c \
|
|
libtommath/bn_mp_from_ubin.c \
|
|
libtommath/bn_mp_fwrite.c \
|
|
libtommath/bn_mp_gcd.c \
|
|
libtommath/bn_mp_get_double.c \
|
|
libtommath/bn_mp_get_i32.c \
|
|
libtommath/bn_mp_get_i64.c \
|
|
libtommath/bn_mp_get_l.c \
|
|
libtommath/bn_mp_get_ll.c \
|
|
libtommath/bn_mp_get_mag_u32.c \
|
|
libtommath/bn_mp_get_mag_u64.c \
|
|
libtommath/bn_mp_get_mag_ul.c \
|
|
libtommath/bn_mp_get_mag_ull.c \
|
|
libtommath/bn_mp_grow.c \
|
|
libtommath/bn_mp_incr.c \
|
|
libtommath/bn_mp_init.c \
|
|
libtommath/bn_mp_init_copy.c \
|
|
libtommath/bn_mp_init_i32.c \
|
|
libtommath/bn_mp_init_i64.c \
|
|
libtommath/bn_mp_init_l.c \
|
|
libtommath/bn_mp_init_ll.c \
|
|
libtommath/bn_mp_init_multi.c \
|
|
libtommath/bn_mp_init_set.c \
|
|
libtommath/bn_mp_init_size.c \
|
|
libtommath/bn_mp_init_u32.c \
|
|
libtommath/bn_mp_init_u64.c \
|
|
libtommath/bn_mp_init_ul.c \
|
|
libtommath/bn_mp_init_ull.c \
|
|
libtommath/bn_mp_invmod.c \
|
|
libtommath/bn_mp_is_square.c \
|
|
libtommath/bn_mp_iseven.c \
|
|
libtommath/bn_mp_isodd.c \
|
|
libtommath/bn_mp_kronecker.c \
|
|
libtommath/bn_mp_lcm.c \
|
|
libtommath/bn_mp_log_u32.c \
|
|
libtommath/bn_mp_lshd.c \
|
|
libtommath/bn_mp_mod.c \
|
|
libtommath/bn_mp_mod_2d.c \
|
|
libtommath/bn_mp_mod_d.c \
|
|
libtommath/bn_mp_montgomery_calc_normalization.c \
|
|
libtommath/bn_mp_montgomery_reduce.c \
|
|
libtommath/bn_mp_montgomery_setup.c \
|
|
libtommath/bn_mp_mul.c \
|
|
libtommath/bn_mp_mul_2.c \
|
|
libtommath/bn_mp_mul_2d.c \
|
|
libtommath/bn_mp_mul_d.c \
|
|
libtommath/bn_mp_mulmod.c \
|
|
libtommath/bn_mp_neg.c \
|
|
libtommath/bn_mp_or.c \
|
|
libtommath/bn_mp_pack.c \
|
|
libtommath/bn_mp_pack_count.c \
|
|
libtommath/bn_mp_prime_fermat.c \
|
|
libtommath/bn_mp_prime_frobenius_underwood.c \
|
|
libtommath/bn_mp_prime_is_prime.c \
|
|
libtommath/bn_mp_prime_miller_rabin.c \
|
|
libtommath/bn_mp_prime_next_prime.c \
|
|
libtommath/bn_mp_prime_rabin_miller_trials.c \
|
|
libtommath/bn_mp_prime_rand.c \
|
|
libtommath/bn_mp_prime_strong_lucas_selfridge.c \
|
|
libtommath/bn_mp_radix_size.c \
|
|
libtommath/bn_mp_radix_smap.c \
|
|
libtommath/bn_mp_rand.c \
|
|
libtommath/bn_mp_read_radix.c \
|
|
libtommath/bn_mp_reduce.c \
|
|
libtommath/bn_mp_reduce_2k.c \
|
|
libtommath/bn_mp_reduce_2k_l.c \
|
|
libtommath/bn_mp_reduce_2k_setup.c \
|
|
libtommath/bn_mp_reduce_2k_setup_l.c \
|
|
libtommath/bn_mp_reduce_is_2k.c \
|
|
libtommath/bn_mp_reduce_is_2k_l.c \
|
|
libtommath/bn_mp_reduce_setup.c \
|
|
libtommath/bn_mp_root_u32.c \
|
|
libtommath/bn_mp_rshd.c \
|
|
libtommath/bn_mp_sbin_size.c \
|
|
libtommath/bn_mp_set.c \
|
|
libtommath/bn_mp_set_double.c \
|
|
libtommath/bn_mp_set_i32.c \
|
|
libtommath/bn_mp_set_i64.c \
|
|
libtommath/bn_mp_set_l.c \
|
|
libtommath/bn_mp_set_ll.c \
|
|
libtommath/bn_mp_set_u32.c \
|
|
libtommath/bn_mp_set_u64.c \
|
|
libtommath/bn_mp_set_ul.c \
|
|
libtommath/bn_mp_set_ull.c \
|
|
libtommath/bn_mp_shrink.c \
|
|
libtommath/bn_mp_signed_rsh.c \
|
|
libtommath/bn_mp_sqr.c \
|
|
libtommath/bn_mp_sqrmod.c \
|
|
libtommath/bn_mp_sqrt.c \
|
|
libtommath/bn_mp_sqrtmod_prime.c \
|
|
libtommath/bn_mp_sub.c \
|
|
libtommath/bn_mp_sub_d.c \
|
|
libtommath/bn_mp_submod.c \
|
|
libtommath/bn_mp_to_radix.c \
|
|
libtommath/bn_mp_to_sbin.c \
|
|
libtommath/bn_mp_to_ubin.c \
|
|
libtommath/bn_mp_ubin_size.c \
|
|
libtommath/bn_mp_unpack.c \
|
|
libtommath/bn_mp_xor.c \
|
|
libtommath/bn_mp_zero.c \
|
|
libtommath/bn_prime_tab.c \
|
|
libtommath/bn_s_mp_add.c \
|
|
libtommath/bn_s_mp_balance_mul.c \
|
|
libtommath/bn_s_mp_exptmod.c \
|
|
libtommath/bn_s_mp_exptmod_fast.c \
|
|
libtommath/bn_s_mp_get_bit.c \
|
|
libtommath/bn_s_mp_invmod_fast.c \
|
|
libtommath/bn_s_mp_invmod_slow.c \
|
|
libtommath/bn_s_mp_karatsuba_mul.c \
|
|
libtommath/bn_s_mp_karatsuba_sqr.c \
|
|
libtommath/bn_s_mp_montgomery_reduce_fast.c \
|
|
libtommath/bn_s_mp_mul_digs.c \
|
|
libtommath/bn_s_mp_mul_digs_fast.c \
|
|
libtommath/bn_s_mp_mul_high_digs.c \
|
|
libtommath/bn_s_mp_mul_high_digs_fast.c \
|
|
libtommath/bn_s_mp_prime_is_divisible.c \
|
|
libtommath/bn_s_mp_rand_jenkins.c \
|
|
libtommath/bn_s_mp_rand_platform.c \
|
|
libtommath/bn_s_mp_reverse.c \
|
|
libtommath/bn_s_mp_sqr.c \
|
|
libtommath/bn_s_mp_sqr_fast.c \
|
|
libtommath/bn_s_mp_sub.c \
|
|
libtommath/bn_s_mp_toom_mul.c \
|
|
libtommath/bn_s_mp_toom_sqr.c \
|
|
libtommath/tommath_private.h \
|
|
libtommath/tommath_cutoffs.h \
|
|
libtommath/tommath_superclass.h \
|
|
libtommath/tommath_class.h \
|
|
libtommath/tommath.h
|
|
|
|
x25519sources = \
|
|
x25519/ed25519_ref10.c \
|
|
x25519/x25519_ref10.c
|
|
|
|
$(libhcrypto_la_OBJECTS) $(test_rand_OBJECTS): hcrypto-link
|
|
|
|
libhcrypto_la_CPPFLAGS = -DBUILD_HCRYPTO_LIB $(AM_CPPFLAGS)
|
|
|
|
if versionscript
|
|
libhcrypto_la_LDFLAGS += $(LDFLAGS_VERSION_SCRIPT)$(srcdir)/version-script.map
|
|
endif
|
|
$(libhcrypto_la_OBJECTS): $(srcdir)/version-script.map
|
|
|
|
|
|
hcrypto-link:
|
|
$(LN_S) $(srcdir)/../hcrypto hcrypto
|
|
touch hcrypto-link
|
|
|
|
do_subst = sed -e 's,[@]srcdir[@],$(srcdir),g' -e 's,[@]exeext[@],$(exeext),g'
|
|
|
|
test_crypto: test_crypto.in Makefile
|
|
$(do_subst) < $(srcdir)/test_crypto.in > test_crypto.tmp
|
|
chmod +x test_crypto.tmp
|
|
mv test_crypto.tmp test_crypto
|
|
|
|
CLEANFILES = \
|
|
crypto-test \
|
|
crypto-test2 \
|
|
error \
|
|
hcrypto \
|
|
hcrypto-link \
|
|
test.file \
|
|
test_crypto \
|
|
test-out* \
|
|
test_crypto.tmp \
|
|
test_crypto.tmp
|
|
|
|
EXTRA_DIST = \
|
|
NTMakefile \
|
|
DESperate.txt \
|
|
passwd_dialog.rc \
|
|
libhcrypto-exports.def \
|
|
dh-tfm.c \
|
|
ec.h \
|
|
ecdh.h \
|
|
ecdsa.h \
|
|
evp-crypt.c \
|
|
evp-w32.c \
|
|
evp-w32.h \
|
|
evp-wincng.c \
|
|
evp-wincng.h \
|
|
gen-des.pl \
|
|
md5crypt_test.c \
|
|
passwd_dialog.aps \
|
|
passwd_dialog.clw \
|
|
passwd_dialog.rc \
|
|
passwd_dialog.res \
|
|
passwd_dlg.c \
|
|
passwd_dlg.h \
|
|
rand-w32.c \
|
|
resource.h \
|
|
rsa-tfm.c \
|
|
rsakey.der \
|
|
rsakey2048.der \
|
|
rsakey4096.der \
|
|
test_crypto.in \
|
|
version-script.map
|