# 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
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)
@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
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) \
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/tommath.h \
libtommath/tommath_class.h \
libtommath/tommath_superclass.h \
libtommath/bncore.c \
libtommath/bn_mp_init.c \
libtommath/bn_mp_clear.c \
libtommath/bn_mp_exch.c \
libtommath/bn_mp_grow.c \
libtommath/bn_mp_shrink.c \
libtommath/bn_mp_clamp.c \
libtommath/bn_mp_zero.c \
libtommath/bn_mp_zero_multi.c \
libtommath/bn_mp_set.c \
libtommath/bn_mp_set_int.c \
libtommath/bn_mp_init_size.c \
libtommath/bn_mp_copy.c \
libtommath/bn_mp_init_copy.c \
libtommath/bn_mp_abs.c \
libtommath/bn_mp_neg.c \
libtommath/bn_mp_cmp_mag.c \
libtommath/bn_mp_cmp.c \
libtommath/bn_mp_cmp_d.c \
libtommath/bn_mp_rshd.c \
libtommath/bn_mp_lshd.c \
libtommath/bn_mp_mod_2d.c \
libtommath/bn_mp_div_2d.c \
libtommath/bn_mp_mul_2d.c \
libtommath/bn_mp_div_2.c \
libtommath/bn_mp_mul_2.c \
libtommath/bn_s_mp_add.c \
libtommath/bn_s_mp_sub.c \
libtommath/bn_fast_s_mp_mul_digs.c \
libtommath/bn_s_mp_mul_digs.c \
libtommath/bn_fast_s_mp_mul_high_digs.c \
libtommath/bn_s_mp_mul_high_digs.c \
libtommath/bn_fast_s_mp_sqr.c \
libtommath/bn_s_mp_sqr.c \
libtommath/bn_mp_add.c \
libtommath/bn_mp_sub.c \
libtommath/bn_mp_karatsuba_mul.c \
libtommath/bn_mp_mul.c \
libtommath/bn_mp_karatsuba_sqr.c \
libtommath/bn_mp_sqr.c \
libtommath/bn_mp_div.c \
libtommath/bn_mp_mod.c \
libtommath/bn_mp_add_d.c \
libtommath/bn_mp_sub_d.c \
libtommath/bn_mp_mul_d.c \
libtommath/bn_mp_div_d.c \
libtommath/bn_mp_mod_d.c \
libtommath/bn_mp_expt_d.c \
libtommath/bn_mp_addmod.c \
libtommath/bn_mp_submod.c \
libtommath/bn_mp_mulmod.c \
libtommath/bn_mp_sqrmod.c \
libtommath/bn_mp_gcd.c \
libtommath/bn_mp_lcm.c \
libtommath/bn_fast_mp_invmod.c \
libtommath/bn_mp_invmod.c \
libtommath/bn_mp_reduce.c \
libtommath/bn_mp_montgomery_setup.c \
libtommath/bn_fast_mp_montgomery_reduce.c \
libtommath/bn_mp_montgomery_reduce.c \
libtommath/bn_mp_exptmod_fast.c \
libtommath/bn_mp_exptmod.c \
libtommath/bn_mp_2expt.c \
libtommath/bn_mp_n_root.c \
libtommath/bn_mp_jacobi.c \
libtommath/bn_reverse.c \
libtommath/bn_mp_count_bits.c \
libtommath/bn_mp_read_unsigned_bin.c \
libtommath/bn_mp_read_signed_bin.c \
libtommath/bn_mp_to_unsigned_bin.c \
libtommath/bn_mp_to_signed_bin.c \
libtommath/bn_mp_unsigned_bin_size.c \
libtommath/bn_mp_signed_bin_size.c \
libtommath/bn_mp_xor.c \
libtommath/bn_mp_and.c \
libtommath/bn_mp_or.c \
libtommath/bn_mp_rand.c \
libtommath/bn_mp_montgomery_calc_normalization.c \
libtommath/bn_mp_prime_is_divisible.c \
libtommath/bn_prime_tab.c \
libtommath/bn_mp_prime_fermat.c \
libtommath/bn_mp_prime_miller_rabin.c \
libtommath/bn_mp_prime_is_prime.c \
libtommath/bn_mp_prime_next_prime.c \
libtommath/bn_mp_find_prime.c \
libtommath/bn_mp_dr_reduce.c \
libtommath/bn_mp_dr_is_modulus.c \
libtommath/bn_mp_dr_setup.c \
libtommath/bn_mp_reduce_setup.c \
libtommath/bn_mp_toom_mul.c \
libtommath/bn_mp_toom_sqr.c \
libtommath/bn_mp_div_3.c \
libtommath/bn_s_mp_exptmod.c \
libtommath/bn_mp_reduce_2k.c \
libtommath/bn_mp_reduce_is_2k.c \
libtommath/bn_mp_reduce_2k_setup.c \
libtommath/bn_mp_reduce_2k_l.c \
libtommath/bn_mp_reduce_is_2k_l.c \
libtommath/bn_mp_reduce_2k_setup_l.c \
libtommath/bn_mp_radix_smap.c \
libtommath/bn_mp_read_radix.c \
libtommath/bn_mp_toradix.c \
libtommath/bn_mp_radix_size.c \
libtommath/bn_mp_fread.c \
libtommath/bn_mp_fwrite.c \
libtommath/bn_mp_cnt_lsb.c \
libtommath/bn_error.c \
libtommath/bn_mp_init_multi.c \
libtommath/bn_mp_clear_multi.c \
libtommath/bn_mp_exteuclid.c \
libtommath/bn_mp_toradix_n.c \
libtommath/bn_mp_prime_random_ex.c \
libtommath/bn_mp_get_int.c \
libtommath/bn_mp_sqrt.c \
libtommath/bn_mp_is_square.c \
libtommath/bn_mp_init_set.c \
libtommath/bn_mp_init_set_int.c \
libtommath/bn_mp_invmod_slow.c \
libtommath/bn_mp_prime_rabin_miller_trials.c \
libtommath/bn_mp_to_signed_bin_n.c \
libtommath/bn_mp_to_unsigned_bin_n.c
$(libhcrypto_la_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