diff options
author | Günther Deschner <gd@samba.org> | 2009-09-15 23:52:20 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-09-16 00:11:23 +0200 |
commit | 87acb96fc360aba0020581eeb4e66768a81e485b (patch) | |
tree | b68bed85d10565d7192c6ac09ccc0ffde3ca5ed3 /source3 | |
parent | 8703d9f5bfd8ded57f263fd4a1f70d121b656b03 (diff) | |
download | samba-87acb96fc360aba0020581eeb4e66768a81e485b.tar.gz samba-87acb96fc360aba0020581eeb4e66768a81e485b.tar.bz2 samba-87acb96fc360aba0020581eeb4e66768a81e485b.zip |
lib/crypto: add aes encryption routines to main cryto lib.
Guenther
Diffstat (limited to 'source3')
-rw-r--r-- | source3/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index a89bbae6ab..903ae94049 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -372,7 +372,8 @@ UTIL_OBJ = ../lib/util/rbtree.o ../lib/util/signal.o ../lib/util/time.o \ CRYPTO_OBJ = ../lib/crypto/crc32.o ../lib/crypto/md5.o \ ../lib/crypto/hmacmd5.o ../lib/crypto/arcfour.o \ ../lib/crypto/md4.o \ - ../lib/crypto/sha256.o ../lib/crypto/hmacsha256.o + ../lib/crypto/sha256.o ../lib/crypto/hmacsha256.o \ + ../lib/crypto/aes.o ../lib/crypto/rijndael-alg-fst.o LIB_OBJ = $(LIBSAMBAUTIL_OBJ) $(UTIL_OBJ) $(CRYPTO_OBJ) \ lib/messages.o librpc/gen_ndr/ndr_messaging.o lib/messages_local.o \ |