summaryrefslogtreecommitdiffstats
path: root/lib/crypto/wscript_build
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2014-10-07 14:48:26 +0200
committerJeremy Allison <jra@samba.org>2014-10-16 19:30:04 +0200
commit03bf8fe4fc78b9f0c7093835a776728089387884 (patch)
tree6cdbfdaf1b0eeec5491152655531aeec8d1da67f /lib/crypto/wscript_build
parent6fb2a982d7088ec9560756c49147783255add79a (diff)
downloadsamba-03bf8fe4fc78b9f0c7093835a776728089387884.tar.gz
samba-03bf8fe4fc78b9f0c7093835a776728089387884.tar.xz
samba-03bf8fe4fc78b9f0c7093835a776728089387884.zip
lib/crypto: add aes_gcm_128 support.
Pair-Programmed-With: Michael Adam <obnox@samba.org> Signed-off-by: Stefan Metzmacher <metze@samba.org> Signed-off-by: Michael Adam <obnox@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'lib/crypto/wscript_build')
-rw-r--r--lib/crypto/wscript_build4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/crypto/wscript_build b/lib/crypto/wscript_build
index 11f749324b..f2326a266f 100644
--- a/lib/crypto/wscript_build
+++ b/lib/crypto/wscript_build
@@ -13,13 +13,13 @@ elif not bld.CONFIG_SET('HAVE_SYS_MD5_H') and not bld.CONFIG_SET('HAVE_COMMONCRY
bld.SAMBA_SUBSYSTEM('LIBCRYPTO',
source='''crc32.c hmacmd5.c md4.c arcfour.c sha256.c sha512.c hmacsha256.c
- aes.c rijndael-alg-fst.c aes_cmac_128.c aes_ccm_128.c
+ aes.c rijndael-alg-fst.c aes_cmac_128.c aes_ccm_128.c aes_gcm_128.c
''' + extra_source,
deps='talloc' + extra_deps
)
bld.SAMBA_SUBSYSTEM('TORTURE_LIBCRYPTO',
- source='md4test.c md5test.c hmacmd5test.c aes_cmac_128_test.c',
+ source='md4test.c md5test.c hmacmd5test.c aes_cmac_128_test.c aes_gcm_128_test.c',
autoproto='test_proto.h',
deps='LIBCRYPTO'
)