Ignore:
Timestamp:
Aug 8, 2016 9:09:29 AM (8 years ago)
Author:
ming
Message:

Re #1943: AES-GCM crypto support for SRTP

Special thanks to Alexander Traud for the patch.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/third_party/build/srtp/Makefile

    r5261 r5412  
    11include ../../../build.mak 
    22include ../../../build/common.mak 
     3include ../os-$(OS_NAME).mak 
    34 
    45export LIBDIR := ../../lib 
     
    2930# libcrypt.a (the crypto engine)  
    3031ciphers = crypto/cipher/cipher.o crypto/cipher/null_cipher.o      \ 
    31           crypto/cipher/aes.o crypto/cipher/aes_icm.o             \ 
    32           crypto/cipher/aes_cbc.o 
     32          $(CIPHERS_SRC) 
    3333 
    34 hashes  = crypto/hash/null_auth.o crypto/hash/sha1.o \ 
    35           crypto/hash/hmac.o crypto/hash/auth.o # crypto/hash/tmmhv2.o  
     34hashes  = crypto/hash/null_auth.o crypto/hash/auth.o $(HASHES_SRC) 
    3635 
    3736replay  = crypto/replay/rdb.o crypto/replay/rdbx.o               \ 
     
    4241ust     = crypto/ust/ust.o  
    4342 
    44 rng     = crypto/rng/rand_source.o crypto/rng/prng.o crypto/rng/ctr_prng.o 
     43rng     = $(RNG_SRC) 
    4544 
    4645err     = pjlib/srtp_err.o 
     
    5554export SRTP_SRCDIR = ../../srtp 
    5655export SRTP_OBJS = $(cryptobj) $(srtpobj) 
    57 export SRTP_CFLAGS = -DHAVE_CONFIG_H $(_CFLAGS) 
     56export SRTP_CFLAGS = -DHAVE_CONFIG_H $(_CFLAGS) $(SRTP_OTHER_CFLAGS) 
    5857export SRTP_LDFLAGS = $(PJLIB_LDLIB) $(_LDFLAGS) 
    5958 
Note: See TracChangeset for help on using the changeset viewer.