Skip to content

Commit

Permalink
Add support for OpenSSL AES and RNG modules
Browse files Browse the repository at this point in the history
  • Loading branch information
jfigus committed Mar 29, 2013
1 parent ece35d5 commit a14b5a0
Show file tree
Hide file tree
Showing 13 changed files with 4,804 additions and 7,055 deletions.
6 changes: 4 additions & 2 deletions Makefile.in
Expand Up @@ -53,6 +53,8 @@ EXE = @EXE@
gdoi = @GDOI_OBJS@
# Random source.
RNG_OBJS = @RNG_OBJS@
RNG_EXTRA_OBJS = @RNG_EXTRA_OBJS@
AES_ICM_OBJ = @AES_ICM_OBJ@

srcdir = @srcdir@
top_srcdir = @top_srcdir@
Expand All @@ -75,7 +77,7 @@ libdir = @libdir@

# libcrypt.a (the crypto engine)
ciphers = crypto/cipher/cipher.o crypto/cipher/null_cipher.o \
crypto/cipher/aes.o crypto/cipher/aes_icm.o \
crypto/cipher/aes.o crypto/cipher/$(AES_ICM_OBJ) \
crypto/cipher/aes_cbc.o

hashes = crypto/hash/null_auth.o crypto/hash/sha1.o \
Expand All @@ -88,7 +90,7 @@ math = crypto/math/datatypes.o crypto/math/stat.o

ust = crypto/ust/ust.o

rng = crypto/rng/$(RNG_OBJS) crypto/rng/prng.o crypto/rng/ctr_prng.o
rng = crypto/rng/$(RNG_OBJS) $(RNG_EXTRA_OBJS)

err = crypto/kernel/err.o

Expand Down
3 changes: 3 additions & 0 deletions config_in.h
Expand Up @@ -141,6 +141,9 @@
/* Define to use GDOI. */
#undef SRTP_GDOI

/* Define to use OpenSSL crypto. */
#undef OPENSSL

/* Define to compile for kernel contexts. */
#undef SRTP_KERNEL

Expand Down

0 comments on commit a14b5a0

Please sign in to comment.