- 99955bf - Final changes for 1.1.1 release by Paul Bakker · 13 years ago
- 2ec0a56 - Fixed issue with Intel compiler on 64-bit platforms by Paul Bakker · 13 years ago
- b15b851 - Check for failed malloc() in ssl_set_hostname() and x509_get_entries() (Closes ticket #47, found by Hugo Leisink) by Paul Bakker · 13 years ago
- 08a5088 - Updated release date by Paul Bakker · 13 years ago
- a42b3e9 - Fixed top line for version by Paul Bakker · 13 years ago
- 69e095c - Changed the behaviour of x509parse_parse_crt for permissive parsing. Now returns the number of 'failed certificates' instead of having a switch to enable it. by Paul Bakker · 13 years ago
- c50132d - Updated version of PolarSSL to 1.1.0 by Paul Bakker · 13 years ago
- c8ffbe7 - Corrected removal of leading '00:' in printing serial numbers in certificates and CRLs by Paul Bakker · 13 years ago
- 4f5ae80 - Fixed MS Visual C++ name clash with int64 in sha4.h by Paul Bakker · 13 years ago
- 508ad5a - Moved all examples programs to use the new entropy and CTR_DRBG by Paul Bakker · 13 years ago
- 6c0ceb3 - Added permissive certificate parsing to x509parse_crt() and x509parse_crtfile(). With permissive parsing the parsing does not stop on encountering a parse-error by Paul Bakker · 13 years ago
- 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 · 13 years ago
- a3d195c - Changed the used random function pointer to more flexible format. Renamed havege_rand() to havege_random() to prevent mistakes. Lots of changes as a consequence in library code and programs by Paul Bakker · 13 years ago
- 0e04d0e - Added CTR_DRBG based on AES-256-CTR (NIST SP 800-90) random generator by Paul Bakker · 13 years ago
- 4463740 - Improved build support for s390x and sparc64 in bignum.h by Paul Bakker · 13 years ago
- 03c7c25 - * If certificate serial is longer than 32 octets, serial number is now appended with '....' after first 28 octets by Paul Bakker · 13 years ago
- fe3256e - Introduced POLARSSL_MPI_MAX_SIZE and POLARSSL_MPI_MAX_BITS for MPI size management (Closes ticket #44) by Paul Bakker · 13 years ago
- b6d5f08 - Added POLARSSL_MPI_WINDOW_SIZE definition to allow easier time to memory trade-off by Paul Bakker · 13 years ago
- 2e6d532 - Added credits! by Paul Bakker · 13 years ago
- cce9d77 - Lots of minimal changes to better support WINCE as a build target by Paul Bakker · 13 years ago
- 5e18aed - Changed the defined key-length of DES ciphers in cipher.h to include the parity bits, to prevent mistakes in copying data. (Closes ticket #33) by Paul Bakker · 13 years ago
- 1fe7d9b - Fixed incorrect behaviour in case of RSASSA-PSS with a salt length smaller than the hash length. (Closes ticket #41) by Paul Bakker · 13 years ago
- cebdf17 - Allowed X509 key usage parsing to accept 4 byte values instead of the standard 1 byte version sometimes used by Microsoft. (Closes ticket #38) by Paul Bakker · 13 years ago
- 03a30d3 - Added latest fix to ChangeLog by Paul Bakker · 13 years ago
- efc3029 - Extracted ASN.1 parsing code from the X.509 parsing code. Added new module. by Paul Bakker · 13 years ago
- b5a11ab - Added a separate CRL entry extension parsing function by Paul Bakker · 13 years ago
- fbc09f3 - Added an EXPLICIT tag number parameter to x509_get_ext() by Paul Bakker · 13 years ago
- 3329d1f - Fixed a bug where the CRL parser expected an EXPLICIT ASN.1 tag before version numbers by Paul Bakker · 13 years ago
- c4909d9 - Inceased maximum size of ASN1 length reads to 32-bits by Paul Bakker · 13 years ago
- fa1c592 - Fixed faulty HMAC-MD2 implementation (Fixes ticket #37) by Paul Bakker · 13 years ago
- d246ed3 - Fixed rsa_encrypt and rsa_decrypt example programs to use public key for encryption and private key for decryption (Fixes ticket #34) by Paul Bakker · 13 years ago
- ca6f3e2 - Clarified use of AES and Camellia in CFB and CTR modes by Paul Bakker · 13 years ago
- 490ecc8 - Added ssl_set_max_version() to set the client's maximum sent version number by Paul Bakker · 13 years ago
- 7eb013f - Added ssl_session_reset() to allow re-use of already set non-connection specific context information by Paul Bakker · 13 years ago
- 7bc05ff - Added rsa_encrypt and rsa_decrypt example programs by Paul Bakker · 13 years ago
- 968bc98 - Preparations for v1.0.0 release of PolarSSL by Paul Bakker · 13 years ago
- 42e5981 - Updated to reflect changes in error codes in the generic cipher and message digest layers by Paul Bakker · 13 years ago
- 343a870 - Expanded generic cipher layer with support for CTR and CFB128 modes of operation. by Paul Bakker · 13 years ago
- 887bd50 - Undid fix for ssl_write that introduced a true bug when buffers are running full. by Paul Bakker · 13 years ago
- 828acb2 - Updated for release 0.99-pre5 by Paul Bakker · 14 years ago
- 1496d38 - Added the ssl_mail_client example application by Paul Bakker · 14 years ago
- 2f5947e - Added mpi_get_bit() and mpi_set_bit() individual bit setter/getter functions. by Paul Bakker · 14 years ago
- 831a755 - Changed behaviour of net_recv(), ssl_fetch_input() and ssl_read(). net_recv() now returns 0 on EOF instead of POLARSSL_ERR_NET_CONN_RESET. ssl_fetch_input() returns POLARSSL_ERR_SSL_CONN_EOF on an EOF from its f_recv() function. ssl_read() returns 0 if a POLARSSL_ERR_SSL_CONN_EOF is received after the handshake. by Paul Bakker · 14 years ago
- 9d78140 - A error_strerror function() has been added to translate between error codes and their description. by Paul Bakker · 14 years ago
- 6c591fa - mpi_init() and mpi_free() only accept a single argument and do not accept variable arguments anymore. This prevents unexpected memory corruption in a number of use cases. by Paul Bakker · 14 years ago
- 335db3f - Functions requiring File System functions can now be disables by undefining POLARSSL_FS_IO by Paul Bakker · 14 years ago
- a755ca1 - Renamed t_s_int, t_int and t_dbl to respectively t_sint, t_uint and t_udbl for clarity by Paul Bakker · 14 years ago
- 23986e5 - Major type rewrite of int to size_t for most variables and arguments used for buffer lengths and loops by Paul Bakker · 14 years ago
- b6ecaf5 - Added additional (configurable) cipher block modes. AES-CTR, Camellia-CTR, XTEA-CBC by Paul Bakker · 14 years ago
- 3efa575 - Ready for release 0.99-pre4 by Paul Bakker · 14 years ago
- 287781a - Added mpi_fill_random() for centralized filling of big numbers with random data (Fixed ticket #10) by Paul Bakker · 14 years ago
- 9867549 - Added information about changed behaviour of x509parse_key() by Paul Bakker · 14 years ago
- e77db2e - Added bugfix info for previous checkin by Paul Bakker · 14 years ago
- 1fd00bf - Fixed bug in ssl_write() when flushing old data (Fixes ticket #18) by Paul Bakker · 14 years ago
- be4e7dc - Debug print of MPI now removes leading zero octets and displays actual bit size of the value by Paul Bakker · 14 years ago
- 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
- 345a6fe - Replaced function that fixes man-in-the-middle attack by Paul Bakker · 14 years ago
- 1946e42 - Made ready for 0.99-pre2 release by Paul Bakker · 14 years ago
- e2a39cc - Do not bail out if no client certificate specified. Try to negotiate anonymous connection (Fixes ticket #12) by Paul Bakker · 14 years ago
- 400ff6f - Corrected parsing of UTCTime dates before 1990 and after 1950 by Paul Bakker · 14 years ago
- a9507c0 - Added crl_app program to allow easy reading and printing of X509 CRLs from file by Paul Bakker · 14 years ago
- 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
- 9fc4659 - Preparing for Release of 0.99 prerelease 1 by Paul Bakker · 14 years ago
- e3166ce - Renamed ciphers member of ssl_context and cipher member of ssl_session to ciphersuites and ciphersuite respectively. This clarifies the difference with the generic cipher layer and is better naming altogether by Paul Bakker · 14 years ago
- 20a7808 - Addec crypt_and_hash example program of the generic hash and cipher layers by Paul Bakker · 14 years ago
- 43b7e35 - Support for PKCS#11 through the use of the pkcs11-helper library by Paul Bakker · 14 years ago
- b619499 - x509parse_time_expired() checks time now in addition to the existing date check by Paul Bakker · 14 years ago
- 72f6266 - Improved information provided about current Hashing, Cipher and Suite capabilities by Paul Bakker · 14 years ago
- 76fd75a - Improved certificate validation and validation against the available CRLs by Paul Bakker · 14 years ago
- 43ca69c - Added function for stringified SSL/TLS version by Paul Bakker · 14 years ago
- 1f87fb6 - Support for DES weak keys and parity bits added by Paul Bakker · 14 years ago
- 74111d3 - Improved X509 certificate parsing to include extended certificate fields, such as Key Usage by Paul Bakker · 14 years ago
- b63b0af - Added verification callback in certificate verification chain in order to allow external blacklisting by Paul Bakker · 14 years ago
- 1b57b06 - Added reading of DHM context from memory and file by Paul Bakker · 14 years ago
- 8123e9d - Added generic cipher wrapper for integration with OpenVPN (donated by Fox-IT) by Paul Bakker · 14 years ago
- 1737385 - Added generic message digest wrapper for integration with OpenVPN (donated by Fox-IT) by Paul Bakker · 14 years ago
- 37ca75d - Added Doxygen source code documentation parts (donated by Fox-IT) by Paul Bakker · 14 years ago
- 99ed678 - Changed line endings and encodings to unix and utf-8 by Paul Bakker · 14 years ago
- 5c10b54 - Added release date for 0.14.0 by Paul Bakker · 14 years ago
- 21eb280 - Changed origins of random function and pointer in rsa_pkcs1_encrypt, rsa_init, rsa_gen_key. by Paul Bakker · 14 years ago
- 2e11f7d - Added support for TLS v1.1 by Paul Bakker · 14 years ago
- a0f082c - Rewrite ChangeLog by Paul Bakker · 14 years ago
- b572adf - Removed dependency on rand() in rsa_pkcs1_encrypt(). Now using random fuction provided to context by Paul Bakker · 14 years ago
- 4c14a25 - Fixed out of source build for tests with CMake by Paul Bakker · 14 years ago
- 690b93d - Made Makefile cleaner by Paul Bakker · 14 years ago
- 77a4358 - Added support for the SSL_EDH_RSA_AES_128_SHA and SSL_EDH_RSA_CAMELLIA_128_SHA ciphersuites by Paul Bakker · 14 years ago
- 699fbbc - Added missing const fixes by Paul Bakker · 15 years ago
- aed271e - Fixed ChangeLog by Paul Bakker · 15 years ago
- 09d87fc - Added release date for 0.13.0 by Paul Bakker · 15 years ago
- 7d3b661 - Added reset functionality for HMAC context. Speed-up for some use-cases. by Paul Bakker · 15 years ago
- baad650 - Changed ARC4 to use seperate input/output buffer by Paul Bakker · 15 years ago
- f3ccc68 - Fixed cipher interface for encrypt/decrypt functions by Paul Bakker · 15 years ago
- 4fc4552 - Added cert_app application by Paul Bakker · 15 years ago
- 9f335d5 - Added attribution for fix from FrankDeB by Paul Bakker · 15 years ago
- 27d6616 - Added x509_get_sig_alg() to allow easy future X509 signature algorithm determination expansion by Paul Bakker · 15 years ago
- 41d13f4 - Found algorithmic bug in mpi_is_prime() by Paul Bakker · 15 years ago
- 4ed999c - Added fixes for compiler warnings on a Mac by Paul Bakker · 15 years ago
- ff60ee6 - Added const-correctness to main codebase by Paul Bakker · 15 years ago
- 9120018 - Added support for GeneralizedTime in X509 certificates by Paul Bakker · 15 years ago
- 9caf2d2 - Added option parsing for ssl_client2 to select host and port by Paul Bakker · 15 years ago