summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2018-02-19 20:11:57 +0100
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2018-02-19 20:14:12 +0100
commit116c1fe982c2a3f2de3ee7750af9bb4e01b892fe (patch)
tree86a7d9ca07c674813e36da08a82ab3c9072eedc3
parentfcc75947e07a6aee24e7f91f2b82080334bb0667 (diff)
downloadgnutls-116c1fe982c2a3f2de3ee7750af9bb4e01b892fe.tar.gz
updated Since version in new function entries as well as map file versions
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
-rw-r--r--NEWS12
-rw-r--r--lib/cert-cred.c2
-rw-r--r--lib/libgnutls.map5
-rw-r--r--lib/ocsp-api.c8
-rw-r--r--lib/tls13/key_update.c2
-rw-r--r--lib/x509/ocsp.c6
-rw-r--r--symbols.last25
7 files changed, 33 insertions, 27 deletions
diff --git a/NEWS b/NEWS
index fe23cf6105..f0aec57b05 100644
--- a/NEWS
+++ b/NEWS
@@ -20,6 +20,18 @@ See the end for copying conditions.
** API and ABI modifications:
gnutls_fips140_set_mode: Added
+gnutls_session_key_update: Added
+gnutls_ext_get_current_msg: Added
+gnutls_reauth: Added
+gnutls_ocsp_status_request_get2: Added
+gnutls_ocsp_resp_import2: Added
+gnutls_ocsp_resp_export2: Added
+gnutls_ocsp_resp_list_import2: Added
+gnutls_certificate_set_retrieve_function3: Added
+gnutls_certificate_set_ocsp_status_request_file2: Added
+gnutls_certificate_set_ocsp_status_request_mem: Added
+gnutls_certificate_get_ocsp_expiration: Added
+gnutls_record_send2: Added
* Version 3.6.2 (released 2018-02-16)
diff --git a/lib/cert-cred.c b/lib/cert-cred.c
index 7734eba232..36acccbf2a 100644
--- a/lib/cert-cred.c
+++ b/lib/cert-cred.c
@@ -628,7 +628,7 @@ void gnutls_certificate_set_retrieve_function2
* certificates are set in the credentials and a callback is available, the
* callback takes predence.
*
- * Since: 3.6.xx
+ * Since: 3.6.3
**/
void gnutls_certificate_set_retrieve_function3
(gnutls_certificate_credentials_t cred,
diff --git a/lib/libgnutls.map b/lib/libgnutls.map
index 549d19da44..5d7d7a5ace 100644
--- a/lib/libgnutls.map
+++ b/lib/libgnutls.map
@@ -1202,11 +1202,6 @@ GNUTLS_3_6_3
{
global:
gnutls_fips140_set_mode;
-} GNUTLS_3_6_2;
-
-GNUTLS_3_6_xx
-{
- global:
gnutls_session_key_update;
gnutls_ext_get_current_msg;
gnutls_reauth;
diff --git a/lib/ocsp-api.c b/lib/ocsp-api.c
index 8e27fd29ad..91a11d63b2 100644
--- a/lib/ocsp-api.c
+++ b/lib/ocsp-api.c
@@ -79,7 +79,7 @@ gnutls_ocsp_status_request_get(gnutls_session_t session,
* Returns: On success, %GNUTLS_E_SUCCESS (0) is returned,
* otherwise a negative error code is returned.
*
- * Since: 3.6.xx
+ * Since: 3.6.3
**/
int
gnutls_ocsp_status_request_get2(gnutls_session_t session,
@@ -233,7 +233,7 @@ unsigned resp_matches_pcert(gnutls_ocsp_resp_t resp, const gnutls_pcert_st *cert
* with the %GNUTLS_CERTIFICATE_API_V2 flag to make the set certificate
* functions return an index usable by this function.
*
- * This function can be called multiple times since GnuTLS 3.6.xx
+ * This function can be called multiple times since GnuTLS 3.6.3
* when multiple responses which apply to the chain are available.
* If the response provided does not match any certificates present
* in the chain, the code %GNUTLS_E_OCSP_MISMATCH_WITH_CERTS is returned.
@@ -421,7 +421,7 @@ gnutls_certificate_set_ocsp_status_request_file2(gnutls_certificate_credentials_
* Returns: On success, the number of loaded responses is returned,
* otherwise a negative error code.
*
- * Since: 3.6.xx
+ * Since: 3.6.3
**/
int
gnutls_certificate_set_ocsp_status_request_mem(gnutls_certificate_credentials_t sc,
@@ -555,7 +555,7 @@ gnutls_certificate_set_ocsp_status_request_mem(gnutls_certificate_credentials_t
* Returns: On success, the expiration time of the OCSP response. Otherwise
* (time_t)(-1) on error, or (time_t)-2 on out of bounds.
*
- * Since: 3.6.xx
+ * Since: 3.6.3
**/
time_t
gnutls_certificate_get_ocsp_expiration(gnutls_certificate_credentials_t sc,
diff --git a/lib/tls13/key_update.c b/lib/tls13/key_update.c
index 9b62e4c817..9bbfca15e3 100644
--- a/lib/tls13/key_update.c
+++ b/lib/tls13/key_update.c
@@ -171,7 +171,7 @@ cleanup:
*
* Returns: %GNUTLS_E_SUCCESS on success, otherwise a negative error code.
*
- * Since: 3.6.xx
+ * Since: 3.6.3
**/
int gnutls_session_key_update(gnutls_session_t session, unsigned flags)
{
diff --git a/lib/x509/ocsp.c b/lib/x509/ocsp.c
index b92bf66536..db54b3ea22 100644
--- a/lib/x509/ocsp.c
+++ b/lib/x509/ocsp.c
@@ -247,7 +247,7 @@ gnutls_ocsp_resp_import(gnutls_ocsp_resp_t resp,
* Returns: On success, %GNUTLS_E_SUCCESS (0) is returned, otherwise a
* negative error value.
*
- * Since: 3.6.xx
+ * Since: 3.6.3
**/
int
gnutls_ocsp_resp_import2(gnutls_ocsp_resp_t resp,
@@ -416,7 +416,7 @@ int gnutls_ocsp_resp_export(gnutls_ocsp_resp_t resp, gnutls_datum_t * data)
* Returns: In case of failure a negative error code will be
* returned, and 0 on success.
*
- * Since: 3.6.xx
+ * Since: 3.6.3
**/
int gnutls_ocsp_resp_export2(gnutls_ocsp_resp_t resp, gnutls_datum_t * data,
gnutls_x509_crt_fmt_t fmt)
@@ -2436,7 +2436,7 @@ gnutls_ocsp_resp_verify(gnutls_ocsp_resp_t resp,
*
* Returns: the number of responses read or a negative error value.
*
- * Since: 3.6.xx
+ * Since: 3.6.3
**/
int
gnutls_ocsp_resp_list_import2(gnutls_ocsp_resp_t **ocsps,
diff --git a/symbols.last b/symbols.last
index 3d0882d899..552c2ef3c9 100644
--- a/symbols.last
+++ b/symbols.last
@@ -2,7 +2,6 @@ GNUTLS_3_4@GNUTLS_3_4
GNUTLS_3_6_0@GNUTLS_3_6_0
GNUTLS_3_6_2@GNUTLS_3_6_2
GNUTLS_3_6_3@GNUTLS_3_6_3
-GNUTLS_3_6_xx@GNUTLS_3_6_xx
_gnutls_global_init_skip@GNUTLS_3_4
gnutls_aead_cipher_decrypt@GNUTLS_3_4
gnutls_aead_cipher_deinit@GNUTLS_3_4
@@ -42,7 +41,7 @@ gnutls_certificate_free_crls@GNUTLS_3_4
gnutls_certificate_free_keys@GNUTLS_3_4
gnutls_certificate_get_crt_raw@GNUTLS_3_4
gnutls_certificate_get_issuer@GNUTLS_3_4
-gnutls_certificate_get_ocsp_expiration@GNUTLS_3_6_xx
+gnutls_certificate_get_ocsp_expiration@GNUTLS_3_6_3
gnutls_certificate_get_openpgp_crt@GNUTLS_3_4
gnutls_certificate_get_openpgp_key@GNUTLS_3_4
gnutls_certificate_get_ours@GNUTLS_3_4
@@ -58,11 +57,11 @@ gnutls_certificate_set_dh_params@GNUTLS_3_4
gnutls_certificate_set_flags@GNUTLS_3_4
gnutls_certificate_set_key@GNUTLS_3_4
gnutls_certificate_set_known_dh_params@GNUTLS_3_4
-gnutls_certificate_set_ocsp_status_request_file2@GNUTLS_3_6_xx
+gnutls_certificate_set_ocsp_status_request_file2@GNUTLS_3_6_3
gnutls_certificate_set_ocsp_status_request_file@GNUTLS_3_4
gnutls_certificate_set_ocsp_status_request_function2@GNUTLS_3_4
gnutls_certificate_set_ocsp_status_request_function@GNUTLS_3_4
-gnutls_certificate_set_ocsp_status_request_mem@GNUTLS_3_6_xx
+gnutls_certificate_set_ocsp_status_request_mem@GNUTLS_3_6_3
gnutls_certificate_set_openpgp_key@GNUTLS_3_4
gnutls_certificate_set_openpgp_key_file2@GNUTLS_3_4
gnutls_certificate_set_openpgp_key_file@GNUTLS_3_4
@@ -73,7 +72,7 @@ gnutls_certificate_set_openpgp_keyring_mem@GNUTLS_3_4
gnutls_certificate_set_params_function@GNUTLS_3_4
gnutls_certificate_set_pin_function@GNUTLS_3_4
gnutls_certificate_set_retrieve_function2@GNUTLS_3_4
-gnutls_certificate_set_retrieve_function3@GNUTLS_3_6_xx
+gnutls_certificate_set_retrieve_function3@GNUTLS_3_6_3
gnutls_certificate_set_retrieve_function@GNUTLS_3_4
gnutls_certificate_set_trust_list@GNUTLS_3_4
gnutls_certificate_set_verify_flags@GNUTLS_3_4
@@ -188,7 +187,7 @@ gnutls_encode_rs_value@GNUTLS_3_6_0
gnutls_error_is_fatal@GNUTLS_3_4
gnutls_error_to_alert@GNUTLS_3_4
gnutls_est_record_overhead_size@GNUTLS_3_4
-gnutls_ext_get_current_msg@GNUTLS_3_6_xx
+gnutls_ext_get_current_msg@GNUTLS_3_6_3
gnutls_ext_get_data@GNUTLS_3_4
gnutls_ext_get_name@GNUTLS_3_4
gnutls_ext_register@GNUTLS_3_4
@@ -289,7 +288,7 @@ gnutls_ocsp_req_set_extension@GNUTLS_3_4
gnutls_ocsp_req_set_nonce@GNUTLS_3_4
gnutls_ocsp_resp_check_crt@GNUTLS_3_4
gnutls_ocsp_resp_deinit@GNUTLS_3_4
-gnutls_ocsp_resp_export2@GNUTLS_3_6_xx
+gnutls_ocsp_resp_export2@GNUTLS_3_6_3
gnutls_ocsp_resp_export@GNUTLS_3_4
gnutls_ocsp_resp_get_certs@GNUTLS_3_4
gnutls_ocsp_resp_get_extension@GNUTLS_3_4
@@ -304,15 +303,15 @@ gnutls_ocsp_resp_get_signature_algorithm@GNUTLS_3_4
gnutls_ocsp_resp_get_single@GNUTLS_3_4
gnutls_ocsp_resp_get_status@GNUTLS_3_4
gnutls_ocsp_resp_get_version@GNUTLS_3_4
-gnutls_ocsp_resp_import2@GNUTLS_3_6_xx
+gnutls_ocsp_resp_import2@GNUTLS_3_6_3
gnutls_ocsp_resp_import@GNUTLS_3_4
gnutls_ocsp_resp_init@GNUTLS_3_4
-gnutls_ocsp_resp_list_import2@GNUTLS_3_6_xx
+gnutls_ocsp_resp_list_import2@GNUTLS_3_6_3
gnutls_ocsp_resp_print@GNUTLS_3_4
gnutls_ocsp_resp_verify@GNUTLS_3_4
gnutls_ocsp_resp_verify_direct@GNUTLS_3_4
gnutls_ocsp_status_request_enable_client@GNUTLS_3_4
-gnutls_ocsp_status_request_get2@GNUTLS_3_6_xx
+gnutls_ocsp_status_request_get2@GNUTLS_3_6_3
gnutls_ocsp_status_request_get@GNUTLS_3_4
gnutls_ocsp_status_request_is_checked@GNUTLS_3_4
gnutls_oid_to_digest@GNUTLS_3_4
@@ -648,7 +647,7 @@ gnutls_pubkey_verify_params@GNUTLS_3_4
gnutls_random_art@GNUTLS_3_4
gnutls_range_split@GNUTLS_3_4
gnutls_realloc@GNUTLS_3_4
-gnutls_reauth@GNUTLS_3_6_xx
+gnutls_reauth@GNUTLS_3_6_3
gnutls_record_can_use_length_hiding@GNUTLS_3_4
gnutls_record_check_corked@GNUTLS_3_4
gnutls_record_check_pending@GNUTLS_3_4
@@ -663,7 +662,7 @@ gnutls_record_overhead_size@GNUTLS_3_4
gnutls_record_recv@GNUTLS_3_4
gnutls_record_recv_packet@GNUTLS_3_4
gnutls_record_recv_seq@GNUTLS_3_4
-gnutls_record_send2@GNUTLS_3_6_xx
+gnutls_record_send2@GNUTLS_3_6_3
gnutls_record_send@GNUTLS_3_4
gnutls_record_send_range@GNUTLS_3_4
gnutls_record_set_max_size@GNUTLS_3_4
@@ -698,7 +697,7 @@ gnutls_session_get_ptr@GNUTLS_3_4
gnutls_session_get_random@GNUTLS_3_4
gnutls_session_get_verify_cert_status@GNUTLS_3_4
gnutls_session_is_resumed@GNUTLS_3_4
-gnutls_session_key_update@GNUTLS_3_6_xx
+gnutls_session_key_update@GNUTLS_3_6_3
gnutls_session_resumption_requested@GNUTLS_3_4
gnutls_session_set_data@GNUTLS_3_4
gnutls_session_set_id@GNUTLS_3_4