1. d2f8de4 including header length in srtp_bits_per_second() by David McGrew · 19 years ago
  2. 4802e02 updated documentation file by David McGrew · 19 years ago
  3. a854688 fixed rtpw policy-setting, added policy functions by David McGrew · 19 years ago
  4. 4fed071 removing length check for generic integer counter mode by David McGrew · 19 years ago
  5. 8da0249 Change #if FORCE_64BIT_ALIGN -> #ifdef FORCE_64BIT_ALIGN by Marcus Sundberg · 19 years ago
  6. 5e89155 Add err_report() and time() macros. by Marcus Sundberg · 19 years ago
  7. 1b5b2ec Add support for SRTP_KERNEL_LINUX. by Marcus Sundberg · 19 years ago
  8. 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
  9. cb60bf8 Make it possible to include srtp.h from C++ code. by Marcus Sundberg · 19 years ago
  10. 1482930 corrected header extension handling by David McGrew · 19 years ago
  11. 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
  12. 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
  13. 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
  14. 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
  15. a062be1 Don't include stdio.h or stdarg.h here. by Marcus Sundberg · 19 years ago
  16. 3df8782 Always use the same err_reporting_level_t definition regardless of whether using syslog or not. by Marcus Sundberg · 19 years ago
  17. 9796c1a aes_inv_sbox is not used if CPU_RISC is defined. by Marcus Sundberg · 19 years ago
  18. 7627bc5 Rename octet union member -> v8 for consistency. by Marcus Sundberg · 19 years ago
  19. af32c31 (v16_t): Rename octet -> v8 for consistency. by Marcus Sundberg · 19 years ago
  20. e91679d Handle aes_expand_encryption_key prototype change. by Marcus Sundberg · 19 years ago
  21. 0d3d7cd Handle aes_expand_encryption_key and aes_expand_decryption_key prototype change. by Marcus Sundberg · 19 years ago
  22. df7cd46 Make all locals static. by Marcus Sundberg · 19 years ago
  23. 865646c (aes_expand_decryption_key): Pass v128_t by pointer, not by value. by Marcus Sundberg · 19 years ago
  24. 98beafa allowing crypto_kernel_init() to be called multiple times by David McGrew · 19 years ago
  25. f2c6f7b fix to allow rtpw to use no security services by David McGrew · 19 years ago
  26. 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
  27. 21c666c (rtp_recvfrom): Always print single line error when srtp_unprotect() fails. by Marcus Sundberg · 19 years ago
  28. 1f84c40 Fix libsrtp.a dependency for apps without linking twice with it. by Marcus Sundberg · 19 years ago
  29. 75d9212 (srtp_create): Document that policy argument may be NULL. by Marcus Sundberg · 19 years ago
  30. 67398e6 (srtp_add_stream): Sanity check arguments before doing anything. by Marcus Sundberg · 19 years ago
  31. 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
  32. 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
  33. 613e2da Include linux/byteorder/generic.h Define printf() and exit(). by Marcus Sundberg · 19 years ago
  34. f76bedb Don't include stdio.h here. by Marcus Sundberg · 19 years ago
  35. 8d15230 Always include stdarg.h here. by Marcus Sundberg · 19 years ago
  36. 9029148 Include stdio.h here if SRTP_KERNEL is not defined. by Marcus Sundberg · 19 years ago
  37. 428c5b3 Add implementation for SRTP_KERNEL_LINUX. by Marcus Sundberg · 19 years ago
  38. 172dc4c Don't include standard C headers here, we get them from datatypes.h now. by Marcus Sundberg · 19 years ago
  39. a504d29 Include netinet/in.h or winsock2.h here if present. by Marcus Sundberg · 19 years ago
  40. 3ba0412 Don't include string.h here. by Marcus Sundberg · 19 years ago
  41. dbd3e41 Include datatypes.h instead of stdlib.h. by Marcus Sundberg · 19 years ago
  42. a7be87d Don't include time.h here. by Marcus Sundberg · 19 years ago
  43. 4448d38 Include string.h and time.h here to get some common definitions, unless SRTP_KERNEL is defined by Marcus Sundberg · 19 years ago
  44. fa0ce8e If SRTP_KERNEL is defined we include kernel_compat.h instead of all the rest. by Marcus Sundberg · 19 years ago
  45. 7a3cd3b Compatibility stuff for building in kernel context. by Marcus Sundberg · 19 years ago
  46. 735eb4f Avoid include standard C headers if SRTP_KERNEL is defined. by Marcus Sundberg · 19 years ago
  47. cef9a21 Don't include stdlib.h here. by Marcus Sundberg · 19 years ago
  48. 958c121 Implement a random source using Linux kernel functions. by Marcus Sundberg · 19 years ago
  49. fe60a8d Don't include time.h here. by Marcus Sundberg · 19 years ago
  50. 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
  51. 64536cc Re-generated from configure.in 1.10. by Marcus Sundberg · 19 years ago
  52. 8a9f627 Remove doxygen test string accidently left in previous commit. by Marcus Sundberg · 19 years ago
  53. 5c714e4 Get RNG_OBJS from autoconf and use it. by Marcus Sundberg · 19 years ago
  54. 7b81b06 Add --enable-kernel-linux flag to support building library for Linux kernel context. by Marcus Sundberg · 19 years ago
  55. 7035366 Fix silly HAVE_SYS_SOCKET_HY typo. by Marcus Sundberg · 19 years ago
  56. d943177 optimization for hmac and bigendian be32, be64 fix by David McGrew · 19 years ago
  57. b0a9311 Kill tests under test which are already present in crypto/test. by Marcus Sundberg · 19 years ago
  58. 7e9c607 Make socket and delay code and compatible with Windows. by Marcus Sundberg · 19 years ago
  59. 385484b Make socket code compatible with Windows. by Marcus Sundberg · 19 years ago
  60. 1cbca88 Fix includes for hton*/ntoh*. by Marcus Sundberg · 19 years ago
  61. a562c63 Fix warnings on 64 bit platforms. by Marcus Sundberg · 19 years ago
  62. 1b274f0 Use proper function prototypes. by Marcus Sundberg · 19 years ago
  63. 968e28a Use portable rand() instead of random(). by Marcus Sundberg · 19 years ago
  64. cf2dcb5 Use proper function prototypes. Use portable rand() instead of random(). by Marcus Sundberg · 19 years ago
  65. af2e0a6 Use proper function prototypes. by Marcus Sundberg · 19 years ago
  66. 956bedc Replace #if checks with #ifdef for autoconf defines. by Marcus Sundberg · 19 years ago
  67. 62d101f Use proper function prototypes. by Marcus Sundberg · 19 years ago
  68. d774edb Use portable rand() instead of random(). by Marcus Sundberg · 19 years ago
  69. a77540e Replace #if checks with #ifdef for autoconf defines. by Marcus Sundberg · 19 years ago
  70. 511c2d4 Replace #if checks with #ifdef for autoconf defines. by Marcus Sundberg · 19 years ago
  71. 9f1fef2 Replace #if checks with #ifdef for autoconf defines. by Marcus Sundberg · 19 years ago
  72. 36b9028 Remove bswap_32 define and use be32_to_cpu() instead. by Marcus Sundberg · 19 years ago
  73. 417469e Add proper includes for hton*/ntoh*. by Marcus Sundberg · 19 years ago
  74. a8fd230 Replace #if checks with #ifdef for autoconf defines. by Marcus Sundberg · 19 years ago
  75. 556f50a Put all printf() calls inside #if DEBUG. by Marcus Sundberg · 19 years ago
  76. 1265cda Make dev_random_fdes static. by Marcus Sundberg · 19 years ago
  77. e4e34f9 Add includes for ntoh*/hton*. by Marcus Sundberg · 19 years ago
  78. 02682e7 Replace #if checks with #ifdef for autoconf defines. by Marcus Sundberg · 19 years ago
  79. 4254d0a Fix includes so we get the prototype for struct sockaddr_in. by Marcus Sundberg · 19 years ago
  80. 0ca768e Kill duplicate file, this is in crypto/include already. by Marcus Sundberg · 19 years ago
  81. fcc4f16 Replace #if checks with #ifdef for autoconf defines. by Marcus Sundberg · 19 years ago
  82. d20ad6c Replace #if checks with #ifdef for autoconf defines. by Marcus Sundberg · 19 years ago
  83. fb7b2e8 Clean up includes. Replace #if checks with #ifdef for autoconf defines. by Marcus Sundberg · 19 years ago
  84. 3c9e3c4 Replace #if checks with #ifdef for autoconf defines. by Marcus Sundberg · 19 years ago
  85. 9aef51e Re-generated from configure.in 1.8. by Marcus Sundberg · 19 years ago
  86. 8046c3a Don't try to use AC_CHECK_FILE when cross compiling. by Marcus Sundberg · 19 years ago
  87. 10050ee Add two more $(EXE) suffixes where needed. by Marcus Sundberg · 19 years ago
  88. aefd684 Add $(EXE) suffix where needed. by Marcus Sundberg · 19 years ago
  89. 95e2372 Move autoconf expansion for EXE and gdoi up among the other macros. by Marcus Sundberg · 19 years ago
  90. b46ad71 Upgrade to more recent version from automake 1.9. by Marcus Sundberg · 19 years ago
  91. e9d8292 (rand_source_get_octet_string): Fix bogus usage of void pointer. by Marcus Sundberg · 19 years ago
  92. d778c79 no change - just testing CVS commit logs by Cullen Jennings · 19 years ago
  93. efe9a4d no change - just testing CVS commit logs by Cullen Jennings · 19 years ago
  94. f712337 fixing debug output and a documentation nit by David McGrew · 19 years ago
  95. 979e1bc Re-generated from configure.in 1.7 by Marcus Sundberg · 19 years ago
  96. d8d64ad Ignore header.tex and latex. by Marcus Sundberg · 19 years ago
  97. 4ce29b2 Make sure output directories exist in case we're building outside the source dir. by Marcus Sundberg · 19 years ago
  98. 82b109e Add rudimentary VPATH support, but exit with an error if trying to build docs outside source dir. by Marcus Sundberg · 19 years ago
  99. 67a695d Expand variables using autoconf. by Marcus Sundberg · 19 years ago
  100. 8ebe5ce Add and use COMPILE variable. Add VPATH support to build outside source dir. by Marcus Sundberg · 19 years ago