mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
15 lines
309 B
Python
15 lines
309 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_SUBSYSTEM('LIBCRYPTO',
|
|
source='crc32.c md5.c hmacmd5.c md4.c arcfour.c sha256.c hmacsha256.c aes.c rijndael-alg-fst.c',
|
|
deps='talloc'
|
|
)
|
|
|
|
|
|
bld.SAMBA_SUBSYSTEM('TORTURE_LIBCRYPTO',
|
|
source='md4test.c md5test.c hmacmd5test.c',
|
|
autoproto='test_proto.h',
|
|
deps='LIBCRYPTO'
|
|
)
|
|
|