diff options
author | Uros Majstorovic <majstor@majstor.org> | 2018-01-22 15:23:20 +0100 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2018-01-22 15:23:20 +0100 |
commit | 87c71978e556d532a5b91a653514a92acec9a1b7 (patch) | |
tree | b7533e088f1adf07ec46a32e9cf33251a147bbe2 /code/ecp/crypto/Makefile | |
parent | b9d0e6e824f222e7f6647806b6afb3c2f4727ab5 (diff) |
arc4random added
Diffstat (limited to 'code/ecp/crypto/Makefile')
-rw-r--r-- | code/ecp/crypto/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/code/ecp/crypto/Makefile b/code/ecp/crypto/Makefile index 797cb16..36ecbfc 100644 --- a/code/ecp/crypto/Makefile +++ b/code/ecp/crypto/Makefile @@ -4,8 +4,8 @@ CFLAGS=$(CFLAGS_PL) $(PIC) -Iinclude -I.. -D__BEGIN_HIDDEN_DECLS= -D__END_HIDDEN obj = e_chacha20poly1305.o crypto.o obj_dep = compat/explicit_bzero.o compat/timingsafe_memcmp.o compat/timingsafe_bcmp.o \ chacha/chacha.o poly1305/poly1305.o curve25519/curve25519.o curve25519/curve25519-generic.o \ - sha/sha256.o sha/sha512.o -subdirs = compat curve25519 chacha poly1305 sha + sha/sha256.o sha/sha512.o arc4random/arc4random.o +subdirs = compat curve25519 chacha poly1305 sha arc4random %.o: %.c |