1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#!/usr/bin/env python
def build(bld):
bld.SAMBA_SUBSYSTEM("GNUTLS_HELPERS",
source='''
gnutls_error.c
gnutls_aead_aes_256_cbc_hmac_sha512.c
gnutls_arcfour_confounded_md5.c
gnutls_weak_crypto.c
gnutls_sp800_108.c
''',
deps="gnutls samba-errors")
bld.SAMBA_SUBSYSTEM('LIBCRYPTO',
source='''
md4.c
''',
deps='''
talloc
''')
bld.SAMBA_SUBSYSTEM('TORTURE_LIBCRYPTO',
source='md4test.c',
autoproto='test_proto.h',
deps='''
LIBCRYPTO
''')
bld.SAMBA_SUBSYSTEM('gkdi',
source='gkdi.c',
deps='''
talloc
GNUTLS_HELPERS
NDR_GKDI
''')
bld.SAMBA_PYTHON('python_crypto',
source='py_crypto.c',
deps='gnutls talloc LIBCLI_AUTH',
realname='samba/crypto.so')
bld.SAMBA_BINARY('test_gnutls_aead_aes_256_cbc_hmac_sha512',
source='''
gnutls_error.c
tests/test_gnutls_aead_aes_256_cbc_hmac_sha512.c
''',
deps='cmocka gnutls samba-util samba-errors',
local_include=False,
for_selftest=True)
bld.SAMBA_BINARY('test_gnutls_sp800_108',
source='''
tests/test_gnutls_sp800_108.c
''',
deps='cmocka GNUTLS_HELPERS samba-util',
local_include=False,
for_selftest=True)
bld.SAMBA_BINARY('test_gkdi_key_derivation',
source='test_gkdi_key_derivation.c',
deps='cmocka gkdi talloc NDR_GKDI samba-util samba-security',
for_selftest=True)
|