1. 5059041 correcting MSVC packing by David McGrew · 18 years ago
  2. c780576 eliminating unneeded int16_t by David McGrew · 18 years ago
  3. d8783aa eliminating c++ keyword 'new' by David McGrew · 18 years ago
  4. 13acc56 adding dtls-srtp support functions test driver by David McGrew · 18 years ago
  5. 0cb86ee adding dtls-srtp support functions by David McGrew · 18 years ago
  6. c79548c adding rtpw test script by David McGrew · 18 years ago
  7. 576e148 adding srtp_stream_init_keys() function by David McGrew · 18 years ago
  8. c4fc00b unsigned consistency changes for portability by David McGrew · 18 years ago
  9. dce4d27 adding contributors by David McGrew · 18 years ago
  10. 7629bf2 updating dates by David McGrew · 18 years ago
  11. 1cc286e starting work on new version by David McGrew · 18 years ago
  12. c78bc15 rng improvements, mostly for MSVC by David McGrew · 18 years ago
  13. 96ed8e9 adding MSVC support by David McGrew · 18 years ago
  14. 9c70f29 fixed SRTCP authentication, added SRTCP test, improved rdb_t tests by David McGrew · 18 years ago
  15. 2d4b3a7 ismacryp compatibility changes by David McGrew · 19 years ago
  16. b0ad070 improved automatic stat test repetition by David McGrew · 19 years ago
  17. 026b47c adding automatic RNG test repetition by David McGrew · 19 years ago
  18. 1a1f992 fixed padding and extended testing by David McGrew · 19 years ago
  19. 11b2e41 fixing srtcp anti-replay protection by David McGrew · 19 years ago
  20. 52ed07b adding ismacryp compatibility to aes_icm by David McGrew · 19 years ago
  21. c34f740 fixing srtcp_protect() direction check by David McGrew · 19 years ago
  22. f15808a moving srtp_get_stream() prototype to .h file by David McGrew · 19 years ago
  23. 7c7ff31 cleanup by David McGrew · 19 years ago
  24. d2f8de4 including header length in srtp_bits_per_second() by David McGrew · 19 years ago
  25. 4802e02 updated documentation file by David McGrew · 19 years ago
  26. a854688 fixed rtpw policy-setting, added policy functions by David McGrew · 19 years ago
  27. 4fed071 removing length check for generic integer counter mode by David McGrew · 19 years ago
  28. 8da0249 Change #if FORCE_64BIT_ALIGN -> #ifdef FORCE_64BIT_ALIGN by Marcus Sundberg · 19 years ago
  29. 5e89155 Add err_report() and time() macros. by Marcus Sundberg · 19 years ago
  30. 1b5b2ec Add support for SRTP_KERNEL_LINUX. by Marcus Sundberg · 19 years ago
  31. d1fc66c If SRTP_KERNEL_LINUX is defined we declare err_level as extern, but don't declare err_report(). by Marcus Sundberg · 19 years ago
  32. cb60bf8 Make it possible to include srtp.h from C++ code. by Marcus Sundberg · 19 years ago
  33. 1482930 corrected header extension handling by David McGrew · 19 years ago
  34. 0c324cb (srtp_unprotect): Revert replay part of previous commit - RFC 3711 mandates that replay check be done first. But do keep key limit check after authentication step. by Marcus Sundberg · 19 years ago
  35. 7362674 Use the file words.txt in current directory instead of /usr/share/dict/words if compiling for Windows. by Marcus Sundberg · 19 years ago
  36. fc4d138 (srtp_unprotect): If authentication services are enabled we verify authentication first of all. Only if authentication succeeds do we check the replay database, and if that validates we proceed with key limit check and decryption. by Marcus Sundberg · 19 years ago
  37. 5c40da8 (srtp_test): Make sure that the packet passed to srtp_unprotect() in replay check really is identical to previous packet. by Marcus Sundberg · 19 years ago
  38. a062be1 Don't include stdio.h or stdarg.h here. by Marcus Sundberg · 19 years ago
  39. 3df8782 Always use the same err_reporting_level_t definition regardless of whether using syslog or not. by Marcus Sundberg · 19 years ago
  40. 9796c1a aes_inv_sbox is not used if CPU_RISC is defined. by Marcus Sundberg · 19 years ago
  41. 7627bc5 Rename octet union member -> v8 for consistency. by Marcus Sundberg · 19 years ago
  42. af32c31 (v16_t): Rename octet -> v8 for consistency. by Marcus Sundberg · 19 years ago
  43. e91679d Handle aes_expand_encryption_key prototype change. by Marcus Sundberg · 19 years ago
  44. 0d3d7cd Handle aes_expand_encryption_key and aes_expand_decryption_key prototype change. by Marcus Sundberg · 19 years ago
  45. df7cd46 Make all locals static. by Marcus Sundberg · 19 years ago
  46. 865646c (aes_expand_decryption_key): Pass v128_t by pointer, not by value. by Marcus Sundberg · 19 years ago
  47. 98beafa allowing crypto_kernel_init() to be called multiple times by David McGrew · 19 years ago
  48. f2c6f7b fix to allow rtpw to use no security services by David McGrew · 19 years ago
  49. 7acbfef Add init code for winsock API so we can actually run on win32. Print error code on both Win32 and unix when socket() call fails. Don't print anonymous error when rtp_recvfrom() fails, rtp_recvfrom now handles that. by Marcus Sundberg · 19 years ago
  50. 21c666c (rtp_recvfrom): Always print single line error when srtp_unprotect() fails. by Marcus Sundberg · 19 years ago
  51. 1f84c40 Fix libsrtp.a dependency for apps without linking twice with it. by Marcus Sundberg · 19 years ago
  52. 75d9212 (srtp_create): Document that policy argument may be NULL. by Marcus Sundberg · 19 years ago
  53. 67398e6 (srtp_add_stream): Sanity check arguments before doing anything. by Marcus Sundberg · 19 years ago
  54. 04adebb (crypto_alloc): Don't allocate 4 extra bytes in Linux kernel context. Handle being called from interrupts in Linux kernel context. by Marcus Sundberg · 19 years ago
  55. e544f61 (cipher_array_bits_per_second): Convert return value to uint64_t to work on platforms with no floating point. Avoid division by zero. by Marcus Sundberg · 19 years ago
  56. 613e2da Include linux/byteorder/generic.h Define printf() and exit(). by Marcus Sundberg · 19 years ago
  57. f76bedb Don't include stdio.h here. by Marcus Sundberg · 19 years ago
  58. 8d15230 Always include stdarg.h here. by Marcus Sundberg · 19 years ago
  59. 9029148 Include stdio.h here if SRTP_KERNEL is not defined. by Marcus Sundberg · 19 years ago
  60. 428c5b3 Add implementation for SRTP_KERNEL_LINUX. by Marcus Sundberg · 19 years ago
  61. 172dc4c Don't include standard C headers here, we get them from datatypes.h now. by Marcus Sundberg · 19 years ago
  62. a504d29 Include netinet/in.h or winsock2.h here if present. by Marcus Sundberg · 19 years ago
  63. 3ba0412 Don't include string.h here. by Marcus Sundberg · 19 years ago
  64. dbd3e41 Include datatypes.h instead of stdlib.h. by Marcus Sundberg · 19 years ago
  65. a7be87d Don't include time.h here. by Marcus Sundberg · 19 years ago
  66. 4448d38 Include string.h and time.h here to get some common definitions, unless SRTP_KERNEL is defined by Marcus Sundberg · 19 years ago
  67. fa0ce8e If SRTP_KERNEL is defined we include kernel_compat.h instead of all the rest. by Marcus Sundberg · 19 years ago
  68. 7a3cd3b Compatibility stuff for building in kernel context. by Marcus Sundberg · 19 years ago
  69. 735eb4f Avoid include standard C headers if SRTP_KERNEL is defined. by Marcus Sundberg · 19 years ago
  70. cef9a21 Don't include stdlib.h here. by Marcus Sundberg · 19 years ago
  71. 958c121 Implement a random source using Linux kernel functions. by Marcus Sundberg · 19 years ago
  72. fe60a8d Don't include time.h here. by Marcus Sundberg · 19 years ago
  73. d4f2fe4 (cipher_bits_per_second): Convert return value to uint64_t to work on platforms with no floating point. by Marcus Sundberg · 19 years ago
  74. 64536cc Re-generated from configure.in 1.10. by Marcus Sundberg · 19 years ago
  75. 8a9f627 Remove doxygen test string accidently left in previous commit. by Marcus Sundberg · 19 years ago
  76. 5c714e4 Get RNG_OBJS from autoconf and use it. by Marcus Sundberg · 19 years ago
  77. 7b81b06 Add --enable-kernel-linux flag to support building library for Linux kernel context. by Marcus Sundberg · 19 years ago
  78. 7035366 Fix silly HAVE_SYS_SOCKET_HY typo. by Marcus Sundberg · 19 years ago
  79. d943177 optimization for hmac and bigendian be32, be64 fix by David McGrew · 19 years ago
  80. b0a9311 Kill tests under test which are already present in crypto/test. by Marcus Sundberg · 19 years ago
  81. 7e9c607 Make socket and delay code and compatible with Windows. by Marcus Sundberg · 19 years ago
  82. 385484b Make socket code compatible with Windows. by Marcus Sundberg · 19 years ago
  83. 1cbca88 Fix includes for hton*/ntoh*. by Marcus Sundberg · 19 years ago
  84. a562c63 Fix warnings on 64 bit platforms. by Marcus Sundberg · 19 years ago
  85. 1b274f0 Use proper function prototypes. by Marcus Sundberg · 19 years ago
  86. 968e28a Use portable rand() instead of random(). by Marcus Sundberg · 19 years ago
  87. cf2dcb5 Use proper function prototypes. Use portable rand() instead of random(). by Marcus Sundberg · 19 years ago
  88. af2e0a6 Use proper function prototypes. by Marcus Sundberg · 19 years ago
  89. 956bedc Replace #if checks with #ifdef for autoconf defines. by Marcus Sundberg · 19 years ago
  90. 62d101f Use proper function prototypes. by Marcus Sundberg · 19 years ago
  91. d774edb Use portable rand() instead of random(). by Marcus Sundberg · 19 years ago
  92. a77540e Replace #if checks with #ifdef for autoconf defines. by Marcus Sundberg · 19 years ago
  93. 511c2d4 Replace #if checks with #ifdef for autoconf defines. by Marcus Sundberg · 19 years ago
  94. 9f1fef2 Replace #if checks with #ifdef for autoconf defines. by Marcus Sundberg · 19 years ago
  95. 36b9028 Remove bswap_32 define and use be32_to_cpu() instead. by Marcus Sundberg · 19 years ago
  96. 417469e Add proper includes for hton*/ntoh*. by Marcus Sundberg · 19 years ago
  97. a8fd230 Replace #if checks with #ifdef for autoconf defines. by Marcus Sundberg · 19 years ago
  98. 556f50a Put all printf() calls inside #if DEBUG. by Marcus Sundberg · 19 years ago
  99. 1265cda Make dev_random_fdes static. by Marcus Sundberg · 19 years ago
  100. e4e34f9 Add includes for ntoh*/hton*. by Marcus Sundberg · 19 years ago