| gnutls.h (3.2.2) | | gnutls.h (3.2.3) | |
| | | | |
| skipping to change at line 54 | | skipping to change at line 54 | |
| #include <sys/types.h> | | #include <sys/types.h> | |
| /* *INDENT-ON* */ | | /* *INDENT-ON* */ | |
| #endif | | #endif | |
| /* Get time_t. */ | | /* Get time_t. */ | |
| #include <time.h> | | #include <time.h> | |
| #ifdef __cplusplus | | #ifdef __cplusplus | |
| extern "C" | | extern "C" | |
| { | | { | |
| #endif | | #endif | |
| | | | |
|
| #define GNUTLS_VERSION "3.2.2" | | #define GNUTLS_VERSION "3.2.3" | |
| | | | |
| #define GNUTLS_VERSION_MAJOR 3 | | #define GNUTLS_VERSION_MAJOR 3 | |
| #define GNUTLS_VERSION_MINOR 2 | | #define GNUTLS_VERSION_MINOR 2 | |
|
| #define GNUTLS_VERSION_PATCH 2 | | #define GNUTLS_VERSION_PATCH 3 | |
| | | | |
|
| #define GNUTLS_VERSION_NUMBER 0x030202 | | #define GNUTLS_VERSION_NUMBER 0x030203 | |
| | | | |
| #define GNUTLS_CIPHER_RIJNDAEL_128_CBC GNUTLS_CIPHER_AES_128_CBC | | #define GNUTLS_CIPHER_RIJNDAEL_128_CBC GNUTLS_CIPHER_AES_128_CBC | |
| #define GNUTLS_CIPHER_RIJNDAEL_256_CBC GNUTLS_CIPHER_AES_256_CBC | | #define GNUTLS_CIPHER_RIJNDAEL_256_CBC GNUTLS_CIPHER_AES_256_CBC | |
| #define GNUTLS_CIPHER_RIJNDAEL_CBC GNUTLS_CIPHER_AES_128_CBC | | #define GNUTLS_CIPHER_RIJNDAEL_CBC GNUTLS_CIPHER_AES_128_CBC | |
| #define GNUTLS_CIPHER_ARCFOUR GNUTLS_CIPHER_ARCFOUR_128 | | #define GNUTLS_CIPHER_ARCFOUR GNUTLS_CIPHER_ARCFOUR_128 | |
| | | | |
| /** | | /** | |
| * gnutls_cipher_algorithm_t: | | * gnutls_cipher_algorithm_t: | |
| * @GNUTLS_CIPHER_UNKNOWN: Unknown algorithm. | | * @GNUTLS_CIPHER_UNKNOWN: Unknown algorithm. | |
| * @GNUTLS_CIPHER_NULL: NULL algorithm. | | * @GNUTLS_CIPHER_NULL: NULL algorithm. | |
| | | | |
| skipping to change at line 1097 | | skipping to change at line 1097 | |
| int gnutls_priority_set_direct (gnutls_session_t session, | | int gnutls_priority_set_direct (gnutls_session_t session, | |
| const char *priorities, | | const char *priorities, | |
| const char **err_pos); | | const char **err_pos); | |
| | | | |
| int gnutls_priority_certificate_type_list (gnutls_priority_t pcache, cons
t unsigned int** list); | | int gnutls_priority_certificate_type_list (gnutls_priority_t pcache, cons
t unsigned int** list); | |
| int gnutls_priority_sign_list (gnutls_priority_t pcache, const unsigned i
nt** list); | | int gnutls_priority_sign_list (gnutls_priority_t pcache, const unsigned i
nt** list); | |
| int gnutls_priority_protocol_list (gnutls_priority_t pcache, const unsign
ed int** list); | | int gnutls_priority_protocol_list (gnutls_priority_t pcache, const unsign
ed int** list); | |
| int gnutls_priority_compression_list (gnutls_priority_t pcache, const uns
igned int** list); | | int gnutls_priority_compression_list (gnutls_priority_t pcache, const uns
igned int** list); | |
| int gnutls_priority_ecc_curve_list (gnutls_priority_t pcache, const unsig
ned int** list); | | int gnutls_priority_ecc_curve_list (gnutls_priority_t pcache, const unsig
ned int** list); | |
| | | | |
|
| | | int gnutls_priority_kx_list (gnutls_priority_t pcache, const unsigned int | |
| | | ** list); | |
| | | int gnutls_priority_cipher_list (gnutls_priority_t pcache, const unsigned | |
| | | int** list); | |
| | | int gnutls_priority_mac_list (gnutls_priority_t pcache, const unsigned in | |
| | | t** list); | |
| | | | |
| /* for compatibility | | /* for compatibility | |
| */ | | */ | |
| int gnutls_set_default_priority (gnutls_session_t session); | | int gnutls_set_default_priority (gnutls_session_t session); | |
| | | | |
| /* Returns the name of a cipher suite */ | | /* Returns the name of a cipher suite */ | |
| const char *gnutls_cipher_suite_get_name (gnutls_kx_algorithm_t | | const char *gnutls_cipher_suite_get_name (gnutls_kx_algorithm_t | |
| kx_algorithm, | | kx_algorithm, | |
| gnutls_cipher_algorithm_t | | gnutls_cipher_algorithm_t | |
| cipher_algorithm, | | cipher_algorithm, | |
| gnutls_mac_algorithm_t | | gnutls_mac_algorithm_t | |
| | | | |
End of changes. 4 change blocks. |
| 3 lines changed or deleted | | 10 lines changed or added | |
|