summaryrefslogtreecommitdiff
path: root/src/serv.c
Commit message (Collapse)AuthorAgeFilesLines
* Several fixes in several places. Patch by Sean Gao <sean.gao@sun.com>.Nikos Mavrogiannopoulos2003-05-081-13/+18
|
* * Added gnutls_x509_privkey_get_key_id() and gnutls_x509_crt_get_key_id()Nikos Mavrogiannopoulos2003-04-181-2/+2
| | | | | functions which return a unique (per public key) ID. These can be used to check if the private key corresponds to a given certificate.
* *** empty log message ***Nikos Mavrogiannopoulos2003-04-141-1/+1
|
* Some fixes to allow proper compiling when --disable-srp-authentication and ↵Nikos Mavrogiannopoulos2003-04-011-1/+21
| | | | --disable-anon-authentication are specified. Patch by Paul Sheer.
* Added the --disable-extra-pki configure option, which disables all extra PKI ↵Nikos Mavrogiannopoulos2003-04-011-0/+2
| | | | stuff like PKCS #7, PKCS #10 etc. To be used in constraint systems.
* Added the --debug option to the gnutls-serv.Nikos Mavrogiannopoulos2003-03-261-1/+9
|
* * Corrected a bug in 64 bit architectures, which affected theNikos Mavrogiannopoulos2003-03-041-8/+2
| | | | | | serial number calculation in the record layer. * Added gnutls_certificate_free_keys() which deletes all the private keys and certificates from the credentials structure.
* The RSA and DH parameter handling has been updated.Nikos Mavrogiannopoulos2003-02-161-43/+6
|
* *** empty log message ***Nikos Mavrogiannopoulos2003-02-121-1/+1
|
* Several internal changes to use the new certificate API. CRL support is ↵Nikos Mavrogiannopoulos2003-02-091-61/+15
| | | | complete.
* * gnutls_dh_params_generate() and gnutls_rsa_params_generate() now useNikos Mavrogiannopoulos2003-02-031-13/+71
| | | | | | | | | | | | gnutls_malloc() to allocate the output parameters. * Added gnutls_pkcs3_extract_dh_params() which extracts parameters from PKCS#3 encoded structures. This was in order to read parameters generated using the openssl dhparam tool. * Several changes in the temporary (DH/RSA) parameter codebase. No DH parameters are now included in the library. Also a credentials structure can now hold only one temporary parameter.
* updated some example and the server to use the new gnutls_malloc() in callbacks.Nikos Mavrogiannopoulos2002-12-131-1/+1
|
* updated to include a callback for receiving openpgp keys, using libopencdk.Nikos Mavrogiannopoulos2002-12-081-481/+518
|
* *** empty log message ***Nikos Mavrogiannopoulos2002-12-071-4/+8
|
* Added the new functions gnutls_get_malloc_function(), ↵Nikos Mavrogiannopoulos2002-12-061-1/+57
| | | | 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().
* Added support for the DSS certificate SRP authenticated cipher suites ↵Nikos Mavrogiannopoulos2002-11-191-77/+6
| | | | (currently only with 3DES cipher). Cleaned up the client and server code, which was duplicated.
* Added certificate authenticated SRP cipher suites.Nikos Mavrogiannopoulos2002-11-191-1/+3
|
* *** empty log message ***Nikos Mavrogiannopoulos2002-11-111-1/+1
|
* cleanupsNikos Mavrogiannopoulos2002-11-111-9/+9
|
* now does not require carriage returnNikos Mavrogiannopoulos2002-10-121-2/+4
|
* Improved the server name extension. Resumed sessions can now use it.Nikos Mavrogiannopoulos2002-10-111-1/+1
|
* Added server name extension, from draft-ietf-tls-extension-05.Nikos Mavrogiannopoulos2002-10-111-0/+9
|
* Separated alert checking from the example programs, to make them cleaner. ↵Nikos Mavrogiannopoulos2002-10-101-1/+2
| | | | Added an example which demonstrates the alert checking.
* Added support for the LZO compression library in gnutls-extra. Some fixes in ↵Nikos Mavrogiannopoulos2002-09-171-2/+4
| | | | the hello message parsing.
* *** empty log message ***Nikos Mavrogiannopoulos2002-09-161-2/+2
|
* Removed dependency on libgdbm library.Nikos Mavrogiannopoulos2002-09-091-86/+89
|
* *** empty log message ***Nikos Mavrogiannopoulos2002-09-031-5/+5
|
* *** empty log message ***Nikos Mavrogiannopoulos2002-09-021-2/+2
|
* cert_type abreviation was expanded to certificate_type.Nikos Mavrogiannopoulos2002-08-301-2/+2
|
* Renamed all the constructed types to have more consisten names, and some ↵Nikos Mavrogiannopoulos2002-08-291-66/+67
| | | | other minor improvements.
* Renamed GNUTLS_CIPHER_ARCFOUR to GNUTLS_CIPHER_ARCFOUR_128Nikos Mavrogiannopoulos2002-08-261-2/+2
|
* renamed ARCFOUR-EXPORT to ARCFOUR-40Nikos Mavrogiannopoulos2002-08-261-2/+2
|
* *** empty log message ***Nikos Mavrogiannopoulos2002-08-251-2/+2
|
* improvements in server html outputNikos Mavrogiannopoulos2002-08-251-16/+24
|
* changes for export cipher suitesNikos Mavrogiannopoulos2002-08-251-6/+55
|
* gnutls_handshake_set_exportable_detection() was obsoleted.Nikos Mavrogiannopoulos2002-08-221-1/+1
|
* Client and server now accept the null cipher option.Nikos Mavrogiannopoulos2002-07-151-1/+3
|
* corrected possible bug in http serverNikos Mavrogiannopoulos2002-07-101-0/+2
|
* *** empty log message ***Nikos Mavrogiannopoulos2002-07-071-2/+2
|
* *** empty log message ***Nikos Mavrogiannopoulos2002-07-051-4/+4
|
* updated the parameters of srpcrypt program. Other minor changes in included ↵Nikos Mavrogiannopoulos2002-07-041-8/+17
| | | | programs.
* Renamed credential allocation functions from *_sc() to *_cred().Nikos Mavrogiannopoulos2002-06-221-6/+6
|
* *** empty log message ***Nikos Mavrogiannopoulos2002-06-221-3/+2
|
* *** empty log message ***Nikos Mavrogiannopoulos2002-06-201-1/+1
|
* _func abreviation is no longer used. Functions renamed to _function.Nikos Mavrogiannopoulos2002-06-191-3/+3
|
* removed ioctl stuff.Nikos Mavrogiannopoulos2002-06-191-4/+5
|
* added 'nodb' and 'quiet' options to server.Nikos Mavrogiannopoulos2002-06-191-19/+45
|
* The server used was changed to a non blocking one. The server was created by ↵Nikos Mavrogiannopoulos2002-06-181-197/+364
| | | | Paul Sheer.
* *** empty log message ***Nikos Mavrogiannopoulos2002-06-161-18/+14
|
* Removed the gdbm backend for resuming TLS sessions. Program gnutls-serv was ↵Nikos Mavrogiannopoulos2002-06-151-9/+119
| | | | modified to include support for resuming sessions with the callback api.