summaryrefslogtreecommitdiff
path: root/libextra
Commit message (Collapse)AuthorAgeFilesLines
* *** empty log message ***Nikos Mavrogiannopoulos2003-06-121-3/+3
|
* Several fixes in several places. Patch by Sean Gao <sean.gao@sun.com>.Nikos Mavrogiannopoulos2003-05-082-6/+10
|
* Some fixes to allow proper compiling when --disable-srp-authentication and ↵Nikos Mavrogiannopoulos2003-04-011-2/+10
| | | | --disable-anon-authentication are specified. Patch by Paul Sheer.
* several bug fixes in the certificate parsing, and some in the asn1 parser.Nikos Mavrogiannopoulos2003-04-011-1/+1
|
* *** empty log message ***Nikos Mavrogiannopoulos2003-03-291-43/+0
|
* *** empty log message ***Nikos Mavrogiannopoulos2003-03-291-2/+2
|
* * Improved the error logging functions, by adding a level, andNikos Mavrogiannopoulos2003-03-192-15/+6
| | | | by allowing debugging messages just by increasing the level.
* Added support for PKCS#10 certificate requests generation.Nikos Mavrogiannopoulos2003-03-151-2/+2
|
* *** empty log message ***Nikos Mavrogiannopoulos2003-03-121-4/+6
|
* fixed a memory leak. Reported by Rupert Kittinger <r.kittinger@efkon.com>Nikos Mavrogiannopoulos2003-03-121-6/+9
|
* * Added ability to generate RSA keys.Nikos Mavrogiannopoulos2003-03-122-7/+7
| | | | | | | * Increased the maximum parameter size in order to read some large keys by some CAs. Patch by Ian Peters <itp@ximian.com>. * Rolled back some of yesterdays changes. The gnutls_x509_privkey, was replaced (again) by the gnutls_privkey.
* the documentation is now created on dist time.Nikos Mavrogiannopoulos2003-03-061-1/+1
|
* *** empty log message ***Nikos Mavrogiannopoulos2003-03-061-1/+1
|
* some fixes in types.Nikos Mavrogiannopoulos2003-02-182-5/+8
|
* The RSA and DH parameter handling has been updated.Nikos Mavrogiannopoulos2003-02-161-1/+1
|
* some fixes to compile.Nikos Mavrogiannopoulos2003-02-122-1/+3
|
* *** empty log message ***Nikos Mavrogiannopoulos2003-02-091-1/+0
|
* Several internal changes to use the new certificate API. CRL support is ↵Nikos Mavrogiannopoulos2003-02-094-65/+8
| | | | complete.
* *** empty log message ***Nikos Mavrogiannopoulos2003-02-081-5/+0
|
* use RECEIVED_ILLEGAL_PARAMETER instead of SRP_PROTOCOL_FAILURE, whenNikos Mavrogiannopoulos2003-01-251-1/+1
| | | | the SRP protocol fails.
* Added check and error code for some SRP fatal protocol failures.Nikos Mavrogiannopoulos2003-01-231-0/+28
|
* more cleanups.Nikos Mavrogiannopoulos2003-01-232-13/+3
|
* The library notifies the application on empty and illegal SRP usernames,Nikos Mavrogiannopoulos2003-01-234-7/+13
| | | | | | | | so that proper notification (via an alert) is sent to the peer. Currently when the SRP ciphersuite is advertized but no username is sent by the peer, the library returns GNUTLS_E_EMPTY_SRP_USERNAME, and the alert associated with this is GNUTLS_A_ACCESS_DENIED (to be changed when the srp draft defines something more appropriate).
* Some cleanups.Nikos Mavrogiannopoulos2003-01-231-15/+22
|
* *** empty log message ***gnutls_0_8_1Nikos Mavrogiannopoulos2003-01-221-1/+0
|
* Improved the SRP support, to prevent attackers guessing theNikos Mavrogiannopoulos2003-01-224-83/+115
| | | | | available usernames by brute force. The g,n values sent are now obtained by the password conf file. (they were static ones)
* GNUTLS_E_PARSING_ERROR error code was replaced by GNUTLS_E_BASE64_DECODING_ERNikos Mavrogiannopoulos2003-01-133-14/+14
| | | | | and GNUTLS_E_SRP_PWD_PARSING_ERROR. GNUTLS_E_ASCII_ARMOR_ERROR was also replaced by GNUTLS_E_BASE64_DECODING_ERROR.
* Only the documented symbols are now exported.Nikos Mavrogiannopoulos2003-01-092-2/+45
|
* If liblzo is found in the system then libgnutls-extra will depend on it, ↵Nikos Mavrogiannopoulos2003-01-011-6/+7
| | | | instead of including minilzo.
* Added missing stub function.Nikos Mavrogiannopoulos2002-12-291-0/+8
|
* Dropped the support for the client key exchange message 0, and server key ↵Nikos Mavrogiannopoulos2002-12-163-42/+30
| | | | exchange message 2.
* Finished SRP-6 stuff. It should work fine now.Nikos Mavrogiannopoulos2002-12-161-1/+28
|
* First part of SRP-6 support. Follows draft-ietf-tls-srp-04 and does not need ↵Nikos Mavrogiannopoulos2002-12-165-238/+237
| | | | the second key exchange part. Does not work yet.
* Added gnutls_openpgp_extract_key_name_string() which returnsNikos Mavrogiannopoulos2002-12-131-0/+85
| | | | a single string for a pgp user id.
* *** empty log message ***gnutls_0_6_0Nikos Mavrogiannopoulos2002-12-081-1/+0
|
* some cleanupsNikos Mavrogiannopoulos2002-12-081-2/+2
|
* minor cleanupsNikos Mavrogiannopoulos2002-12-081-3/+5
|
* Exported the more convenient gnutls_malloc() and gnutls_free() functions. ↵Nikos Mavrogiannopoulos2002-12-072-3/+3
| | | | Actually pointers to functions.
* Some bug fixes for the OpenPGP code.Timo Schulz2002-12-071-49/+50
|
* *** empty log message ***Nikos Mavrogiannopoulos2002-12-061-1/+1
|
* Changed the semantics of gnutls_pem_base64_encode_alloc()Nikos Mavrogiannopoulos2002-12-061-26/+12
| | | | | | | | | and gnutls_pem_base64_decode_alloc(). In the default case were the gnutls library is used with malloc/realloc/free, these are binary compatible. They now require the returned data to be freed using the gnutls_global_get_free_function().
* some cleanups.Nikos Mavrogiannopoulos2002-12-063-3/+4
|
* Added the new functions gnutls_get_malloc_function(), ↵Nikos Mavrogiannopoulos2002-12-063-17/+5
| | | | gnutls_get_free_function(). Also changed the way callback functions must allocate data. They now need to use these functions, instead of just calling malloc().
* more updates in the SRP parameter callback.Nikos Mavrogiannopoulos2002-12-064-19/+31
|
* Some updates in the srp codebase, to detect illegal usernames etc.Nikos Mavrogiannopoulos2002-12-062-2/+8
|
* *** empty log message ***Nikos Mavrogiannopoulos2002-12-021-2/+2
|
* some updates on srp documentation.Nikos Mavrogiannopoulos2002-12-021-2/+2
|
* Cleanups. Prefixed some internal function with underscore.Nikos Mavrogiannopoulos2002-12-027-25/+32
|
* Added the function gnutls_srp_server_set_credentials_function()Nikos Mavrogiannopoulos2002-12-017-179/+168
| | | | | to allow retrieving SRP parameters from an external backend - other than password files.
* Enabled the OpenPGP key retrieval callback function (untested yet).Nikos Mavrogiannopoulos2002-12-013-50/+24
|