-
derekmacdonald added rescorla1 to the libsrtp project.
2009-10-17 06:10:36 UTC by derekmacdonald
-
derekmacdonald added zourzouvillys to the libsrtp project.
2009-10-17 06:08:24 UTC by derekmacdonald
-
patch ported from
http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/srtp/.
2009-07-12 03:47:43 UTC by ispbrasil
-
Hi
Has anybody implemented AES-256 with libsrtp.
i need some guildline of source code to start with
Thank you.
2009-06-13 11:09:21 UTC by amipatel
-
Hi
There is a bug in random source generate code 'rand_source_get_octet_string' for vc2005 has bag at line 112.
now: unsigned int * dst = dest;
correct: uint8_t *dst = (uint8_t *)dest;.
2009-02-10 08:17:00 UTC by nobody
-
Hi,
I found a bug in srtp_remove_stream.
This:
/* remove stream from the list */
last_stream->next = stream->next;
Does not work if there is only one stream in the list. You need something like:
/* remove stream from the list */
if (last_stream == stream){
// only one stream in list
session->stream_list = stream->next;
} else {
last_stream->next = stream->next;...
2008-10-24 19:40:36 UTC by s_kiser
-
Make install don´t work when configure is executed out of source dir. This patch fix it.
Example:
~]$ ls
~]$ srtp-1.4.2 build
~]$ cd build
~]$ ../srtp-1.4.2/configure
~]$ make
~]$ make install (don´t work)
~]$.
2008-07-30 17:17:41 UTC by ppizarro
-
Attached is a patch file for fixing Win32/DevStudio build on 1.4.4.
It now automatically copies the config.h_win32vc7 file to the include directory when the build is started.
The config.h_win32vc7 has been updated to it actually compiles.
It also fixes problems with the ekt.c file to do with doing arithmetic on void pointers. I have no idea how even GNU allows that!
2008-06-05 08:20:31 UTC by rjongbloed
-
I attempted libsrtp (srtp-1.4.2 and srtp-1.4.4.)build on solaris 10 but had some problems running the tests. The compile was ok after adding -lnsl to LIBS in Makefile but when I ran test/cipher_driver -v I got a core dump (bus error).
I have seen similar issue in mailing list and some patch was provided for that, can I get the same patch to make it working on solaris.
email add...
2008-04-15 07:49:26 UTC by nobody
-
The testsuite fails on architectures where 32-bit accesses must be 32-bit aligned because test/srtp_driver.c hands unaligned data to srtp_protect() and srtp_unprotect(). This makes the testsuite fail on arm.
There are #ifdef ALIGNMENT_32BIT_REQUIRED macros for word access in crypto/include/integers.h, but these are never used anywhere. Instead the srtp_*protect() routines say they require...
2008-03-11 17:35:18 UTC by martinwguy