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/os-auto.mak.in

    r5361 r5412  
    3636else 
    3737DIRS += srtp 
     38 
     39ifeq (@ac_ssl_has_aes_gcm@,0) 
     40CIPHERS_SRC = crypto/cipher/aes.o crypto/cipher/aes_icm.o       \ 
     41              crypto/cipher/aes_cbc.o 
     42HASHES_SRC  = crypto/hash/sha1.o crypto/hash/hmac.o             \ 
     43              # crypto/hash/tmmhv2.o 
     44RNG_SRC     = crypto/rng/rand_source.o crypto/rng/prng.o        \ 
     45              crypto/rng/ctr_prng.o 
     46else 
     47CIPHERS_SRC = crypto/cipher/aes_icm_ossl.o crypto/cipher/aes_gcm_ossl.o 
     48HASHES_SRC  = crypto/hash/hmac_ossl.o 
     49RNG_SRC     = crypto/rng/rand_source_ossl.o 
     50SRTP_OTHER_CFLAGS = -DOPENSSL 
     51endif 
     52 
     53 
    3854endif 
    3955 
Note: See TracChangeset for help on using the changeset viewer.