mirror of
https://github.com/samba-team/samba.git
synced 2025-01-26 10:04:02 +03:00
8f4c30f785
Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
32 lines
788 B
Python
32 lines
788 B
Python
#!/usr/bin/env python
|
|
|
|
extra_deps = ''
|
|
|
|
if bld.CONFIG_SET("HAVE_AESNI_INTEL"):
|
|
extra_deps += ' aesni-intel'
|
|
|
|
bld.SAMBA_SUBSYSTEM('GNUTLS_HELPERS',
|
|
source='gnutls_error.c',
|
|
deps='gnutls samba-errors');
|
|
|
|
bld.SAMBA_SUBSYSTEM('LIBCRYPTO',
|
|
source='''md4.c arcfour.c
|
|
aes.c rijndael-alg-fst.c aes_cmac_128.c aes_ccm_128.c aes_gcm_128.c
|
|
''',
|
|
deps='talloc' + extra_deps
|
|
)
|
|
|
|
bld.SAMBA_SUBSYSTEM('TORTURE_LIBCRYPTO',
|
|
source='''md4test.c
|
|
aes_cmac_128_test.c aes_ccm_128_test.c aes_gcm_128_test.c
|
|
''',
|
|
autoproto='test_proto.h',
|
|
deps='LIBCRYPTO'
|
|
)
|
|
|
|
bld.SAMBA_PYTHON('python_crypto',
|
|
source='py_crypto.c',
|
|
deps='LIBCRYPTO',
|
|
realname='samba/crypto.so'
|
|
)
|