1. 9bcf16c Centralized module option values in config.h by Paul Bakker · 12 years ago
  2. b0c19a4 PKCS#5 module added. Moved PBKDF2 functionality inside and deprecated by Paul Bakker · 12 years ago
  3. 90995b5 Added mechanism to provide alternative cipher / hash implementations by Paul Bakker · 12 years ago
  4. f1f21fe Parsing of PKCS#8 encrypted private key files added and PKCS#12 basis by Paul Bakker · 12 years ago
  5. 2a84424 Disabled the HAVEGE random generator by default by Paul Bakker · 12 years ago
  6. 45bda90 Comments for extra PSK ciphersuites added to config.h by Paul Bakker · 12 years ago
  7. 48f7a5d DHE-PSK based ciphersuite support added and cleaner key exchange based by Paul Bakker · 12 years ago
  8. e07f41d Introduced defines to control availability of specific SSL Key Exchange methods. by Paul Bakker · 12 years ago
  9. 7ad00f9 Sanity checks added to config.h by Paul Bakker · 12 years ago
  10. d4a56ec Added pre-shared key handling for the client side of SSL / TLS by Paul Bakker · 12 years ago
  11. 370e90c Enable PBKDF2 by default by Paul Bakker · 12 years ago
  12. c70b982 OID functionality moved to a separate module. by Paul Bakker · 12 years ago
  13. 41c83d3 Added Ephemeral Elliptic Curve Diffie Hellman ciphersuites to SSL/TLS by Paul Bakker · 12 years ago
  14. 00c1f43 Merge branch 'ecc-devel-mpg' into development by Paul Bakker · 12 years ago
  15. d589a0d Modified Makefiles to include new files and and config.h to PolarSSL standard by Paul Bakker · 12 years ago
  16. 78a8c71 Re-added support for parsing and handling SSLv2 Client Hello messages by Paul Bakker · 12 years ago
  17. 6deb37e Added comments to indicate dependency from PEM on AES, DES and MD5 by Paul Bakker · 12 years ago
  18. 40865c8 Added sending of alert messages in case of decryption failures as per RFC by Paul Bakker · 13 years ago
  19. d66f070 Disable debug messages that can introduce a timing side channel. by Paul Bakker · 13 years ago
  20. 8fe40dc Allow enabling of dummy error_strerror() to support some use-cases by Paul Bakker · 13 years ago
  21. 2aea141 Add skeleton ecdsa.[ch] by Manuel Pégourié-Gonnard · 13 years ago
  22. 0bad5c2 Add skeleton ecdh.[ch] by Manuel Pégourié-Gonnard · 13 years ago
  23. 39d2adb Added (skeleton) ecp.[ch] by Manuel Pégourié-Gonnard · 13 years ago
  24. 769075d Fixed dependency on POLARSSL_SHA4_C in ssl modules by Paul Bakker · 13 years ago
  25. 9a73632 - Merged changesets 1399 up to and including 1415 into 1.2 branch by Paul Bakker · 13 years ago
  26. 645ce3a - Moved ciphersuite naming scheme to IANA reserved names by Paul Bakker · 13 years ago
  27. 62261d6 - Rewrote bignum type definition #ifdef tree to work better on all systems by Paul Bakker · 13 years ago
  28. e23c315 - Fixed typo by Paul Bakker · 13 years ago
  29. 5c2364c - Moved from unsigned long to uint32_t throughout code by Paul Bakker · 13 years ago
  30. eb2c658 - Generalized external private key implementation handling (like PKCS#11) in SSL/TLS by Paul Bakker · 13 years ago
  31. 0a59707 - Added simple SSL session cache implementation by Paul Bakker · 13 years ago
  32. f518b16 - Added PKCS#5 PBKDF2 key derivation function by Paul Bakker · 13 years ago
  33. a9379c0 - Added base blowfish algorithm by Paul Bakker · 13 years ago
  34. 2770fbd - Added DEFLATE compression support as per RFC3749 (requires zlib) by Paul Bakker · 13 years ago
  35. 05ef835 - Added support for Hardware Acceleration hooking in SSL/TLS by Paul Bakker · 13 years ago
  36. 89e80c9 - Added base Galois/Counter mode (GCM) for AES by Paul Bakker · 13 years ago
  37. bdb912d - Added preliminary ASN.1 buffer writing support by Paul Bakker · 13 years ago
  38. 1504af5 - Removed redundant POLARSSL_DEBUG_MSG define by Paul Bakker · 13 years ago
  39. fab5c82 - Added support for NULL cipher (POLARSSL_CIPHER_NULL_CIPHER) and weak ciphersuites (POLARSSL_ENABLE_WEAK_CIPHERSUITES). They are disabled by default! by Paul Bakker · 14 years ago
  40. 43655f4 - Added option to prevent default entropy sources from loading (POLARSSL_NO_DEFAULT_ENTROPY_SOURCES) by Paul Bakker · 14 years ago
  41. 6083fd2 - Added a generic entropy accumulator that provides support for adding custom entropy sources and added some generic and platform dependent entropy sources by Paul Bakker · 14 years ago
  42. 0e04d0e - Added CTR_DRBG based on AES-256-CTR (NIST SP 800-90) random generator by Paul Bakker · 14 years ago
  43. cce9d77 - Lots of minimal changes to better support WINCE as a build target by Paul Bakker · 14 years ago
  44. efc3029 - Extracted ASN.1 parsing code from the X.509 parsing code. Added new module. by Paul Bakker · 14 years ago
  45. 5c721f9 - Introduced POLARSSL_X509_ALLOW_UNSUPPORTED_CRITICAL_EXTENSION flag to continue parsing when encountering a critical flag that's not supported by PolarSSL by Paul Bakker · 14 years ago
  46. 5690efc - Fixed a whole bunch of dependencies on defines between files, examples and tests by Paul Bakker · 14 years ago
  47. e29ab06 - Fixed minor typo by Paul Bakker · 14 years ago
  48. 9d78140 - A error_strerror function() has been added to translate between error codes and their description. by Paul Bakker · 14 years ago
  49. 335db3f - Functions requiring File System functions can now be disables by undefining POLARSSL_FS_IO by Paul Bakker · 14 years ago
  50. 15566e4 - Reordered options alphabetically by Paul Bakker · 14 years ago
  51. b6ecaf5 - Added additional (configurable) cipher block modes. AES-CTR, Camellia-CTR, XTEA-CBC by Paul Bakker · 14 years ago
  52. 0216cc1 - Added flag to disable Chinese Remainder Theorem when using RSA private operation (POLARSSL_RSA_NO_CRT) by Paul Bakker · 14 years ago
  53. 9dcc322 - Added support for PKCS#1 v2.1 encoding and thus support for the RSAES-OAEP and RSASSA-PSS operations (enabled by POLARSSL_PKCS1_V21) by Paul Bakker · 14 years ago
  54. 96743fc - Parsing of PEM files moved to separate module (Fixes ticket #13). Also possible to remove PEM support for systems only using DER encoding by Paul Bakker · 14 years ago
  55. f3b86c1 - Updated Doxygen documentation generation and documentation on small parts by Paul Bakker · 15 years ago
  56. 0a62cd1 - Extra clarification in config header by Paul Bakker · 15 years ago
  57. f917e42 - Disables PKCS#11 support by default by Paul Bakker · 15 years ago
  58. 43b7e35 - Support for PKCS#11 through the use of the pkcs11-helper library by Paul Bakker · 15 years ago
  59. 8123e9d - Added generic cipher wrapper for integration with OpenVPN (donated by Fox-IT) by Paul Bakker · 15 years ago
  60. 1737385 - Added generic message digest wrapper for integration with OpenVPN (donated by Fox-IT) by Paul Bakker · 15 years ago
  61. 37ca75d - Added Doxygen source code documentation parts (donated by Fox-IT) by Paul Bakker · 15 years ago
  62. b96f154 - Fixed copyright message by Paul Bakker · 15 years ago
  63. 84f12b7 - Updated Copyright to correct entity by Paul Bakker · 15 years ago
  64. 3ac1b2d - Added runtime and compiletime version information by Paul Bakker · 15 years ago
  65. fc8c436 - Updated copyright line to 2010 by Paul Bakker · 15 years ago
  66. 1f3c39c - Removed copyright line for Christophe Devine for clarity by Paul Bakker · 15 years ago
  67. 6506aff - Removed MD2 and MD4 by default by Paul Bakker · 16 years ago
  68. 77b385e - Updated copyright messages on all relevant files by Paul Bakker · 16 years ago
  69. 13e2dfe - Cleaned up header documentation by Paul Bakker · 16 years ago
  70. 68041ec - added description to POLARSSL_HAVE_ASM by Paul Bakker · 16 years ago
  71. 785a9ee - Added email address to header license information by Paul Bakker · 17 years ago
  72. 38119b1 - Added first version of Camellia by Paul Bakker · 17 years ago
  73. 7a7c78f - Added XTEA Algorithm (Not used in SSL) by Paul Bakker · 17 years ago
  74. e0ccd0a - Updated Copyright notices by Paul Bakker · 17 years ago
  75. 40e4694 - First replacement of xyssl by polarssl where needed by Paul Bakker · 17 years ago
  76. 5121ce5 - Renamed include directory to polarssl by Paul Bakker · 17 years ago