| [ << ] | [ < ] | [ Up ] | [ > ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] | 
E.1 Core TLS API
The prototypes for the following functions lie in ‘gnutls/gnutls.h’.
gnutls_alert_get
- Function: gnutls_alert_description_t gnutls_alert_get (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- This function will return the last alert number received. This function should be called when - GNUTLS_E_WARNING_ALERT_RECEIVEDor- GNUTLS_E_FATAL_ALERT_RECEIVEDerrors are returned by a gnutls function. The peer may send alerts if he encounters an error. If no alert has been received the returned value is undefined.- Returns: the last alert received, a - gnutls_alert_description_tvalue.
gnutls_alert_get_name
- Function: const char * gnutls_alert_get_name (gnutls_alert_description_t alert)
- alert: is an alert number. - This function will return a string that describes the given alert number, or - NULL. See- gnutls_alert_get().- Returns: string corresponding to - gnutls_alert_description_tvalue.
gnutls_alert_get_strname
- Function: const char * gnutls_alert_get_strname (gnutls_alert_description_t alert)
- alert: is an alert number. - This function will return a string of the name of the alert. - Returns: string corresponding to - gnutls_alert_description_tvalue.- Since: 3.0 
gnutls_alert_send
- Function: int gnutls_alert_send (gnutls_session_t session, gnutls_alert_level_t level, gnutls_alert_description_t desc)
- session: is a - gnutls_session_tstructure.- level: is the level of the alert - desc: is the alert description - This function will send an alert to the peer in order to inform him of something important (eg. his Certificate could not be verified). If the alert level is Fatal then the peer is expected to close the connection, otherwise he may ignore the alert and continue. - The error code of the underlying record send function will be returned, so you may also receive - GNUTLS_E_INTERRUPTEDor- GNUTLS_E_AGAINas well.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise an error code is returned.
gnutls_alert_send_appropriate
- Function: int gnutls_alert_send_appropriate (gnutls_session_t session, int err)
- session: is a - gnutls_session_tstructure.- err: is an integer - Sends an alert to the peer depending on the error code returned by a gnutls function. This function will call - gnutls_error_to_alert()to determine the appropriate alert to send.- This function may also return - GNUTLS_E_AGAIN, or- GNUTLS_E_INTERRUPTED.- If the return value is - GNUTLS_E_INVALID_REQUEST, then no alert has been sent to the peer.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise an error code is returned.
gnutls_alpn_get_selected_protocol
- Function: int gnutls_alpn_get_selected_protocol (gnutls_session_t session, gnutls_datum_t * protocol)
- session: is a - gnutls_session_tstructure.- protocol: will hold the protocol name - This function allows you to get the negotiated protocol name. The returned protocol should be treated as opaque, constant value and only valid during the session life. - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.- Since 3.1.11 
gnutls_alpn_set_protocols
- Function: int gnutls_alpn_set_protocols (gnutls_session_t session, const gnutls_datum_t * protocols, unsigned protocols_size, unsigned int flags)
- session: is a - gnutls_session_tstructure.- protocols: is the protocol names to add. - protocols_size: the number of protocols to add. - flags: zero or - GNUTLS_ALPN_*- This function is to be used by both clients and servers, to declare the supported ALPN protocols, which are used during peer negotiation. - If - GNUTLS_ALPN_MANDis specified the connection will be aborted if no matching ALPN protocol is found.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.- Since 3.1.11 
gnutls_anon_allocate_client_credentials
- Function: int gnutls_anon_allocate_client_credentials (gnutls_anon_client_credentials_t * sc)
- sc: is a pointer to a - gnutls_anon_client_credentials_tstructure.- This structure is complex enough to manipulate directly thus this helper function is provided in order to allocate it. - Returns: - GNUTLS_E_SUCCESSon success, or an error code.
gnutls_anon_allocate_server_credentials
- Function: int gnutls_anon_allocate_server_credentials (gnutls_anon_server_credentials_t * sc)
- sc: is a pointer to a - gnutls_anon_server_credentials_tstructure.- This structure is complex enough to manipulate directly thus this helper function is provided in order to allocate it. - Returns: - GNUTLS_E_SUCCESSon success, or an error code.
gnutls_anon_free_client_credentials
- Function: void gnutls_anon_free_client_credentials (gnutls_anon_client_credentials_t sc)
- sc: is a - gnutls_anon_client_credentials_tstructure.- This structure is complex enough to manipulate directly thus this helper function is provided in order to free (deallocate) it. 
gnutls_anon_free_server_credentials
- Function: void gnutls_anon_free_server_credentials (gnutls_anon_server_credentials_t sc)
- sc: is a - gnutls_anon_server_credentials_tstructure.- This structure is complex enough to manipulate directly thus this helper function is provided in order to free (deallocate) it. 
gnutls_anon_set_params_function
- Function: void gnutls_anon_set_params_function (gnutls_anon_server_credentials_t res, gnutls_params_function * func)
- res: is a gnutls_anon_server_credentials_t structure - func: is the function to be called - This function will set a callback in order for the server to get the Diffie-Hellman or RSA parameters for anonymous authentication. The callback should return - GNUTLS_E_SUCCESS(0) on success.
gnutls_anon_set_server_dh_params
- Function: void gnutls_anon_set_server_dh_params (gnutls_anon_server_credentials_t res, gnutls_dh_params_t dh_params)
- res: is a gnutls_anon_server_credentials_t structure - dh_params: is a structure that holds Diffie-Hellman parameters. - This function will set the Diffie-Hellman parameters for an anonymous server to use. These parameters will be used in Anonymous Diffie-Hellman cipher suites. 
gnutls_anon_set_server_params_function
- Function: void gnutls_anon_set_server_params_function (gnutls_anon_server_credentials_t res, gnutls_params_function * func)
- res: is a gnutls_certificate_credentials_t structure - func: is the function to be called - This function will set a callback in order for the server to get the Diffie-Hellman parameters for anonymous authentication. The callback should return - GNUTLS_E_SUCCESS(0) on success.
gnutls_auth_client_get_type
- Function: gnutls_credentials_type_t gnutls_auth_client_get_type (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- Returns the type of credentials that were used for client authentication. The returned information is to be used to distinguish the function used to access authentication data. - Returns: The type of credentials for the client authentication schema, a - gnutls_credentials_type_ttype.
gnutls_auth_get_type
- Function: gnutls_credentials_type_t gnutls_auth_get_type (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- Returns type of credentials for the current authentication schema. The returned information is to be used to distinguish the function used to access authentication data. - Eg. for CERTIFICATE ciphersuites (key exchange algorithms: - GNUTLS_KX_RSA,- GNUTLS_KX_DHE_RSA), the same function are to be used to access the authentication data.- Returns: The type of credentials for the current authentication schema, a - gnutls_credentials_type_ttype.
gnutls_auth_server_get_type
- Function: gnutls_credentials_type_t gnutls_auth_server_get_type (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- Returns the type of credentials that were used for server authentication. The returned information is to be used to distinguish the function used to access authentication data. - Returns: The type of credentials for the server authentication schema, a - gnutls_credentials_type_ttype.
gnutls_bye
- Function: int gnutls_bye (gnutls_session_t session, gnutls_close_request_t how)
- session: is a - gnutls_session_tstructure.- how: is an integer - Terminates the current TLS/SSL connection. The connection should have been initiated using - gnutls_handshake().- howshould be one of- GNUTLS_SHUT_RDWR,- GNUTLS_SHUT_WR.- In case of - GNUTLS_SHUT_RDWRthe TLS session gets terminated and further receives and sends will be disallowed. If the return value is zero you may continue using the underlying transport layer.- GNUTLS_SHUT_RDWRsends an alert containing a close request and waits for the peer to reply with the same message.- In case of - GNUTLS_SHUT_WRthe TLS session gets terminated and further sends will be disallowed. In order to reuse the connection you should wait for an EOF from the peer.- GNUTLS_SHUT_WRsends an alert containing a close request.- Note that not all implementations will properly terminate a TLS connection. Some of them, usually for performance reasons, will terminate only the underlying transport layer, and thus not distinguishing between a malicious party prematurely terminating the connection and normal termination. - This function may also return - GNUTLS_E_AGAINor- GNUTLS_E_INTERRUPTED; cf.- gnutls_record_get_direction().- Returns: - GNUTLS_E_SUCCESSon success, or an error code, see function documentation for entire semantics.
gnutls_certificate_activation_time_peers
- Function: time_t gnutls_certificate_activation_time_peers (gnutls_session_t session)
- session: is a gnutls session - This function will return the peer’s certificate activation time. This is the creation time for openpgp keys. - Returns: (time_t)-1 on error. - Deprecated: - gnutls_certificate_verify_peers2()now verifies activation times.
gnutls_certificate_allocate_credentials
- Function: int gnutls_certificate_allocate_credentials (gnutls_certificate_credentials_t * res)
- res: is a pointer to a - gnutls_certificate_credentials_tstructure.- This structure is complex enough to manipulate directly thus this helper function is provided in order to allocate it. - Returns: - GNUTLS_E_SUCCESSon success, or an error code.
gnutls_certificate_client_get_request_status
- Function: int gnutls_certificate_client_get_request_status (gnutls_session_t session)
- session: is a gnutls session - Get whether client certificate is requested or not. - Returns: 0 if the peer (server) did not request client authentication or 1 otherwise. 
gnutls_certificate_expiration_time_peers
- Function: time_t gnutls_certificate_expiration_time_peers (gnutls_session_t session)
- session: is a gnutls session - This function will return the peer’s certificate expiration time. - Returns: (time_t)-1 on error. - Deprecated: - gnutls_certificate_verify_peers2()now verifies expiration times.
gnutls_certificate_free_ca_names
- Function: void gnutls_certificate_free_ca_names (gnutls_certificate_credentials_t sc)
- sc: is a - gnutls_certificate_credentials_tstructure.- This function will delete all the CA name in the given credentials. Clients may call this to save some memory since in client side the CA names are not used. Servers might want to use this function if a large list of trusted CAs is present and sending the names of it would just consume bandwidth without providing information to client. - CA names are used by servers to advertise the CAs they support to clients. 
gnutls_certificate_free_cas
- Function: void gnutls_certificate_free_cas (gnutls_certificate_credentials_t sc)
- sc: is a - gnutls_certificate_credentials_tstructure.- This function will delete all the CAs associated with the given credentials. Servers that do not use - gnutls_certificate_verify_peers2()may call this to save some memory.
gnutls_certificate_free_credentials
- Function: void gnutls_certificate_free_credentials (gnutls_certificate_credentials_t sc)
- sc: is a - gnutls_certificate_credentials_tstructure.- This structure is complex enough to manipulate directly thus this helper function is provided in order to free (deallocate) it. - This function does not free any temporary parameters associated with this structure (ie RSA and DH parameters are not freed by this function). 
gnutls_certificate_free_crls
- Function: void gnutls_certificate_free_crls (gnutls_certificate_credentials_t sc)
- sc: is a - gnutls_certificate_credentials_tstructure.- This function will delete all the CRLs associated with the given credentials. 
gnutls_certificate_free_keys
- Function: void gnutls_certificate_free_keys (gnutls_certificate_credentials_t sc)
- sc: is a - gnutls_certificate_credentials_tstructure.- This function will delete all the keys and the certificates associated with the given credentials. This function must not be called when a TLS negotiation that uses the credentials is in progress. 
gnutls_certificate_get_crt_raw
- Function: int gnutls_certificate_get_crt_raw (gnutls_certificate_credentials_t sc, unsigned idx1, unsigned idx2, gnutls_datum_t * cert)
- sc: is a - gnutls_certificate_credentials_tstructure.- idx1: the index of the certificate if multiple are present - idx2: the index in the certificate list. Zero gives the server’s certificate. - cert: Will hold the DER encoded certificate. - This function will return the DER encoded certificate of the server or any other certificate on its certificate chain (based on - idx2). The returned data should be treated as constant and only accessible during the lifetime of- sc.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error value. In case the indexes are out of bounds- GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLEis returned.- Since: 3.2.5 
gnutls_certificate_get_issuer
- Function: int gnutls_certificate_get_issuer (gnutls_certificate_credentials_t sc, gnutls_x509_crt_t cert, gnutls_x509_crt_t * issuer, unsigned int flags)
- sc: is a - gnutls_certificate_credentials_tstructure.- cert: is the certificate to find issuer for - issuer: Will hold the issuer if any. Should be treated as constant. - flags: Use zero. - This function will return the issuer of a given certificate. - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error value.- Since: 3.0 
gnutls_certificate_get_ours
- Function: const gnutls_datum_t * gnutls_certificate_get_ours (gnutls_session_t session)
- session: is a gnutls session - Gets the certificate as sent to the peer in the last handshake. The certificate is in raw (DER) format. No certificate list is being returned. Only the first certificate. - Returns: a pointer to a - gnutls_datum_tcontaining our certificate, or- NULLin case of an error or if no certificate was used.
gnutls_certificate_get_peers
- Function: const gnutls_datum_t * gnutls_certificate_get_peers (gnutls_session_t session, unsigned int * list_size)
- session: is a gnutls session - list_size: is the length of the certificate list (may be - NULL)- Get the peer’s raw certificate (chain) as sent by the peer. These certificates are in raw format (DER encoded for X.509). In case of a X.509 then a certificate list may be present. The first certificate in the list is the peer’s certificate, following the issuer’s certificate, then the issuer’s issuer etc. - In case of OpenPGP keys a single key will be returned in raw format. - Returns: a pointer to a - gnutls_datum_tcontaining our certificates, or- NULLin case of an error or if no certificate was used.
gnutls_certificate_get_peers_subkey_id
- Function: int gnutls_certificate_get_peers_subkey_id (gnutls_session_t session, gnutls_datum_t * id)
- session: is a gnutls session - id: will contain the ID - Get the peer’s subkey ID when OpenPGP certificates are used. The returned - idshould be treated as constant.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise an error code is returned.- Since: 3.1.3 
gnutls_certificate_send_x509_rdn_sequence
- Function: void gnutls_certificate_send_x509_rdn_sequence (gnutls_session_t session, int status)
- session: is a pointer to a - gnutls_session_tstructure.- status: is 0 or 1 - If status is non zero, this function will order gnutls not to send the rdnSequence in the certificate request message. That is the server will not advertise its trusted CAs to the peer. If status is zero then the default behaviour will take effect, which is to advertise the server’s trusted CAs. - This function has no effect in clients, and in authentication methods other than certificate with X.509 certificates. 
gnutls_certificate_server_set_request
- Function: void gnutls_certificate_server_set_request (gnutls_session_t session, gnutls_certificate_request_t req)
- session: is a - gnutls_session_tstructure.- req: is one of GNUTLS_CERT_REQUEST, GNUTLS_CERT_REQUIRE - This function specifies if we (in case of a server) are going to send a certificate request message to the client. If - reqis GNUTLS_CERT_REQUIRE then the server will return an error if the peer does not provide a certificate. If you do not call this function then the client will not be asked to send a certificate.
gnutls_certificate_set_dh_params
- Function: void gnutls_certificate_set_dh_params (gnutls_certificate_credentials_t res, gnutls_dh_params_t dh_params)
- res: is a gnutls_certificate_credentials_t structure - dh_params: is a structure that holds Diffie-Hellman parameters. - This function will set the Diffie-Hellman parameters for a certificate server to use. These parameters will be used in Ephemeral Diffie-Hellman cipher suites. Note that only a pointer to the parameters are stored in the certificate handle, so you must not deallocate the parameters before the certificate is deallocated. 
gnutls_certificate_set_ocsp_status_request_file
- Function: int gnutls_certificate_set_ocsp_status_request_file (gnutls_certificate_credentials_t sc, const char * response_file, unsigned int flags)
- sc: is a credentials structure. - response_file: a filename of the OCSP response - flags: should be zero - This function sets the filename of an OCSP response, that will be sent to the client if requests an OCSP certificate status. This is a convenience function which is inefficient on busy servers since the file is opened on every access. Use - gnutls_certificate_set_ocsp_status_request_function()to fine-tune file accesses.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.- Since: 3.1.3 
gnutls_certificate_set_ocsp_status_request_function
- Function: void gnutls_certificate_set_ocsp_status_request_function (gnutls_certificate_credentials_t sc, gnutls_status_request_ocsp_func ocsp_func, void * ptr)
- sc: is a - gnutls_certificate_credentials_tstructure.- ocsp_func: function pointer to OCSP status request callback. - ptr: opaque pointer passed to callback function - This function is to be used by server to register a callback to handle OCSP status requests from the client. The callback will be invoked if the client supplied a status-request OCSP extension. The callback function prototype is: - typedef int (*gnutls_status_request_ocsp_func) (gnutls_session_t session, void *ptr, gnutls_datum_t *ocsp_response); - The callback will be invoked if the client requests an OCSP certificate status. The callback may return - GNUTLS_E_NO_CERTIFICATE_STATUS, if there is no recent OCSP response. If the callback returns- GNUTLS_E_SUCCESS, the server will provide the client with the ocsp_response.- The response must be a value allocated using - gnutls_malloc(), and will be deinitialized when needed.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.- Since: 3.1.3 
gnutls_certificate_set_params_function
- Function: void gnutls_certificate_set_params_function (gnutls_certificate_credentials_t res, gnutls_params_function * func)
- res: is a gnutls_certificate_credentials_t structure - func: is the function to be called - This function will set a callback in order for the server to get the Diffie-Hellman or RSA parameters for certificate authentication. The callback should return - GNUTLS_E_SUCCESS(0) on success.
gnutls_certificate_set_pin_function
- Function: void gnutls_certificate_set_pin_function (gnutls_certificate_credentials_t cred, gnutls_pin_callback_t fn, void * userdata)
- cred: is a - gnutls_certificate_credentials_tstructure.- fn: A PIN callback - userdata: Data to be passed in the callback - This function will set a callback function to be used when required to access a protected object. This function overrides any other global PIN functions. - Note that this function must be called right after initialization to have effect. - Since: 3.1.0 
gnutls_certificate_set_retrieve_function
- Function: void gnutls_certificate_set_retrieve_function (gnutls_certificate_credentials_t cred, gnutls_certificate_retrieve_function * func)
- cred: is a - gnutls_certificate_credentials_tstructure.- func: is the callback function - This function sets a callback to be called in order to retrieve the certificate to be used in the handshake. You are advised to use - gnutls_certificate_set_retrieve_function2()because it is much more efficient in the processing it requires from gnutls.- The callback’s function prototype is: int (*callback)(gnutls_session_t, const gnutls_datum_t* req_ca_dn, int nreqs, const gnutls_pk_algorithm_t* pk_algos, int pk_algos_length, gnutls_retr2_st* st); - req_ca_certis only used in X.509 certificates. Contains a list with the CA names that the server considers trusted. Normally we should send a certificate that is signed by one of these CAs. These names are DER encoded. To get a more meaningful value use the function- gnutls_x509_rdn_get().- pk_algoscontains a list with server’s acceptable signature algorithms. The certificate returned should support the server’s given algorithms.- stshould contain the certificates and private keys.- If the callback function is provided then gnutls will call it, in the handshake, after the certificate request message has been received. - In server side pk_algos and req_ca_dn are NULL. - The callback function should set the certificate list to be sent, and return 0 on success. If no certificate was selected then the number of certificates should be set to zero. The value (-1) indicates error and the handshake will be terminated. - Since: 3.0 
gnutls_certificate_set_verify_flags
- Function: void gnutls_certificate_set_verify_flags (gnutls_certificate_credentials_t res, unsigned int flags)
- res: is a gnutls_certificate_credentials_t structure - flags: are the flags - This function will set the flags to be used for verification of certificates and override any defaults. The provided flags must be an OR of the - gnutls_certificate_verify_flagsenumerations.
gnutls_certificate_set_verify_function
- Function: void gnutls_certificate_set_verify_function (gnutls_certificate_credentials_t cred, gnutls_certificate_verify_function * func)
- cred: is a - gnutls_certificate_credentials_tstructure.- func: is the callback function - This function sets a callback to be called when peer’s certificate has been received in order to verify it on receipt rather than doing after the handshake is completed. - The callback’s function prototype is: int (*callback)(gnutls_session_t); - If the callback function is provided then gnutls will call it, in the handshake, just after the certificate message has been received. To verify or obtain the certificate the - gnutls_certificate_verify_peers2(),- gnutls_certificate_type_get(),- gnutls_certificate_get_peers()functions can be used.- The callback function should return 0 for the handshake to continue or non-zero to terminate. - Since: 2.10.0 
gnutls_certificate_set_verify_limits
- Function: void gnutls_certificate_set_verify_limits (gnutls_certificate_credentials_t res, unsigned int max_bits, unsigned int max_depth)
- res: is a gnutls_certificate_credentials structure - max_bits: is the number of bits of an acceptable certificate (default 8200) - max_depth: is maximum depth of the verification of a certificate chain (default 5) - This function will set some upper limits for the default verification function, - gnutls_certificate_verify_peers2(), to avoid denial of service attacks. You can set them to zero to disable limits.
gnutls_certificate_set_x509_crl
- Function: int gnutls_certificate_set_x509_crl (gnutls_certificate_credentials_t res, gnutls_x509_crl_t * crl_list, int crl_list_size)
- res: is a - gnutls_certificate_credentials_tstructure.- crl_list: is a list of trusted CRLs. They should have been verified before. - crl_list_size: holds the size of the crl_list - This function adds the trusted CRLs in order to verify client or server certificates. In case of a client this is not required to be called if the certificates are not verified using - gnutls_certificate_verify_peers2(). This function may be called multiple times.- Returns: number of CRLs processed, or a negative error code on error. - Since: 2.4.0 
gnutls_certificate_set_x509_crl_file
- Function: int gnutls_certificate_set_x509_crl_file (gnutls_certificate_credentials_t res, const char * crlfile, gnutls_x509_crt_fmt_t type)
- res: is a - gnutls_certificate_credentials_tstructure.- crlfile: is a file containing the list of verified CRLs (DER or PEM list) - type: is PEM or DER - This function adds the trusted CRLs in order to verify client or server certificates. In case of a client this is not required to be called if the certificates are not verified using - gnutls_certificate_verify_peers2(). This function may be called multiple times.- Returns: number of CRLs processed or a negative error code on error. 
gnutls_certificate_set_x509_crl_mem
- Function: int gnutls_certificate_set_x509_crl_mem (gnutls_certificate_credentials_t res, const gnutls_datum_t * CRL, gnutls_x509_crt_fmt_t type)
- res: is a - gnutls_certificate_credentials_tstructure.- CRL: is a list of trusted CRLs. They should have been verified before. - type: is DER or PEM - This function adds the trusted CRLs in order to verify client or server certificates. In case of a client this is not required to be called if the certificates are not verified using - gnutls_certificate_verify_peers2(). This function may be called multiple times.- Returns: number of CRLs processed, or a negative error code on error. 
gnutls_certificate_set_x509_key
- Function: int gnutls_certificate_set_x509_key (gnutls_certificate_credentials_t res, gnutls_x509_crt_t * cert_list, int cert_list_size, gnutls_x509_privkey_t key)
- res: is a - gnutls_certificate_credentials_tstructure.- cert_list: contains a certificate list (path) for the specified private key - cert_list_size: holds the size of the certificate list - key: is a - gnutls_x509_privkey_tkey- This function sets a certificate/private key pair in the gnutls_certificate_credentials_t structure. This function may be called more than once, in case multiple keys/certificates exist for the server. For clients that wants to send more than their own end entity certificate (e.g., also an intermediate CA cert) then put the certificate chain in - cert_list.- Note that the certificates and keys provided, can be safely deinitialized after this function is called. - Returns: - GNUTLS_E_SUCCESS(0) on success, or a negative error code.- Since: 2.4.0 
gnutls_certificate_set_x509_key_file
- Function: int gnutls_certificate_set_x509_key_file (gnutls_certificate_credentials_t res, const char * certfile, const char * keyfile, gnutls_x509_crt_fmt_t type)
- res: is a - gnutls_certificate_credentials_tstructure.- certfile: is a file that containing the certificate list (path) for the specified private key, in PKCS7 format, or a list of certificates - keyfile: is a file that contains the private key - type: is PEM or DER - This function sets a certificate/private key pair in the gnutls_certificate_credentials_t structure. This function may be called more than once, in case multiple keys/certificates exist for the server. For clients that need to send more than its own end entity certificate, e.g., also an intermediate CA cert, then the - certfilemust contain the ordered certificate chain.- Note that the names in the certificate provided will be considered when selecting the appropriate certificate to use (in case of multiple certificate/key pairs). - This function can also accept URLs at - keyfileand- certfile. In that case it will import the private key and certificate indicated by the URLs. Note that the supported URLs are the ones indicated by- gnutls_url_is_supported().- In case the - certfileis provided as a PKCS- 11URL, then the certificate, and its present issuers in the token are are imported (i.e., the required trust chain).- Returns: - GNUTLS_E_SUCCESS(0) on success, or a negative error code.
gnutls_certificate_set_x509_key_file2
- Function: int gnutls_certificate_set_x509_key_file2 (gnutls_certificate_credentials_t res, const char * certfile, const char * keyfile, gnutls_x509_crt_fmt_t type, const char * pass, unsigned int flags)
- res: is a - gnutls_certificate_credentials_tstructure.- certfile: is a file that containing the certificate list (path) for the specified private key, in PKCS7 format, or a list of certificates - keyfile: is a file that contains the private key - type: is PEM or DER - pass: is the password of the key - flags: an ORed sequence of gnutls_pkcs_encrypt_flags_t - This function sets a certificate/private key pair in the gnutls_certificate_credentials_t structure. This function may be called more than once, in case multiple keys/certificates exist for the server. For clients that need to send more than its own end entity certificate, e.g., also an intermediate CA cert, then the - certfilemust contain the ordered certificate chain.- Note that the names in the certificate provided will be considered when selecting the appropriate certificate to use (in case of multiple certificate/key pairs). - This function can also accept URLs at - keyfileand- certfile. In that case it will import the private key and certificate indicated by the URLs. Note that the supported URLs are the ones indicated by- gnutls_url_is_supported().- In case the - certfileis provided as a PKCS- 11URL, then the certificate, and its present issuers in the token are are imported (i.e., the required trust chain).- Returns: - GNUTLS_E_SUCCESS(0) on success, or a negative error code.
gnutls_certificate_set_x509_key_mem
- Function: int gnutls_certificate_set_x509_key_mem (gnutls_certificate_credentials_t res, const gnutls_datum_t * cert, const gnutls_datum_t * key, gnutls_x509_crt_fmt_t type)
- res: is a - gnutls_certificate_credentials_tstructure.- cert: contains a certificate list (path) for the specified private key - key: is the private key, or - NULL- type: is PEM or DER - This function sets a certificate/private key pair in the gnutls_certificate_credentials_t structure. This function may be called more than once, in case multiple keys/certificates exist for the server. - Note that the keyUsage (2.5.29.15) PKIX extension in X.509 certificates is supported. This means that certificates intended for signing cannot be used for ciphersuites that require encryption. - If the certificate and the private key are given in PEM encoding then the strings that hold their values must be null terminated. - The - keymay be- NULLif you are using a sign callback, see- gnutls_sign_callback_set().- Returns: - GNUTLS_E_SUCCESS(0) on success, or a negative error code.
gnutls_certificate_set_x509_key_mem2
- Function: int gnutls_certificate_set_x509_key_mem2 (gnutls_certificate_credentials_t res, const gnutls_datum_t * cert, const gnutls_datum_t * key, gnutls_x509_crt_fmt_t type, const char * pass, unsigned int flags)
- res: is a - gnutls_certificate_credentials_tstructure.- cert: contains a certificate list (path) for the specified private key - key: is the private key, or - NULL- type: is PEM or DER - pass: is the key’s password - flags: an ORed sequence of gnutls_pkcs_encrypt_flags_t - This function sets a certificate/private key pair in the gnutls_certificate_credentials_t structure. This function may be called more than once, in case multiple keys/certificates exist for the server. - Note that the keyUsage (2.5.29.15) PKIX extension in X.509 certificates is supported. This means that certificates intended for signing cannot be used for ciphersuites that require encryption. - If the certificate and the private key are given in PEM encoding then the strings that hold their values must be null terminated. - The - keymay be- NULLif you are using a sign callback, see- gnutls_sign_callback_set().- Returns: - GNUTLS_E_SUCCESS(0) on success, or a negative error code.
gnutls_certificate_set_x509_simple_pkcs12_file
- Function: int gnutls_certificate_set_x509_simple_pkcs12_file (gnutls_certificate_credentials_t res, const char * pkcs12file, gnutls_x509_crt_fmt_t type, const char * password)
- res: is a - gnutls_certificate_credentials_tstructure.- pkcs12file: filename of file containing PKCS - 12blob.- type: is PEM or DER of the - pkcs12file.- password: optional password used to decrypt PKCS - 12file, bags and keys.- This function sets a certificate/private key pair and/or a CRL in the gnutls_certificate_credentials_t structure. This function may be called more than once (in case multiple keys/certificates exist for the server). - PKCS - 12files with a MAC, encrypted bags and PKCS- 8private keys are supported. However, only password based security, and the same password for all operations, are supported.- PKCS - 12file may contain many keys and/or certificates, and this function will try to auto-detect based on the key ID the certificate and key pair to use. If the PKCS- 12file contain the issuer of the selected certificate, it will be appended to the certificate to form a chain.- If more than one private keys are stored in the PKCS - 12file, then only one key will be read (and it is undefined which one).- It is believed that the limitations of this function is acceptable for most usage, and that any more flexibility would introduce complexity that would make it harder to use this functionality at all. - Returns: - GNUTLS_E_SUCCESS(0) on success, or a negative error code.
gnutls_certificate_set_x509_simple_pkcs12_mem
- Function: int gnutls_certificate_set_x509_simple_pkcs12_mem (gnutls_certificate_credentials_t res, const gnutls_datum_t * p12blob, gnutls_x509_crt_fmt_t type, const char * password)
- res: is a - gnutls_certificate_credentials_tstructure.- p12blob: the PKCS - 12blob.- type: is PEM or DER of the - pkcs12file.- password: optional password used to decrypt PKCS - 12file, bags and keys.- This function sets a certificate/private key pair and/or a CRL in the gnutls_certificate_credentials_t structure. This function may be called more than once (in case multiple keys/certificates exist for the server). - Encrypted PKCS - 12bags and PKCS- 8private keys are supported. However, only password based security, and the same password for all operations, are supported.- PKCS - 12file may contain many keys and/or certificates, and this function will try to auto-detect based on the key ID the certificate and key pair to use. If the PKCS- 12file contain the issuer of the selected certificate, it will be appended to the certificate to form a chain.- If more than one private keys are stored in the PKCS - 12file, then only one key will be read (and it is undefined which one).- It is believed that the limitations of this function is acceptable for most usage, and that any more flexibility would introduce complexity that would make it harder to use this functionality at all. - Returns: - GNUTLS_E_SUCCESS(0) on success, or a negative error code.- Since: 2.8.0 
gnutls_certificate_set_x509_system_trust
- Function: int gnutls_certificate_set_x509_system_trust (gnutls_certificate_credentials_t cred)
- cred: is a - gnutls_certificate_credentials_tstructure.- This function adds the system’s default trusted CAs in order to verify client or server certificates. - In the case the system is currently unsupported - GNUTLS_E_UNIMPLEMENTED_FEATUREis returned.- Returns: the number of certificates processed or a negative error code on error. - Since: 3.0.20 
gnutls_certificate_set_x509_trust
- Function: int gnutls_certificate_set_x509_trust (gnutls_certificate_credentials_t res, gnutls_x509_crt_t * ca_list, int ca_list_size)
- res: is a - gnutls_certificate_credentials_tstructure.- ca_list: is a list of trusted CAs - ca_list_size: holds the size of the CA list - This function adds the trusted CAs in order to verify client or server certificates. In case of a client this is not required to be called if the certificates are not verified using - gnutls_certificate_verify_peers2(). This function may be called multiple times.- In case of a server the CAs set here will be sent to the client if a certificate request is sent. This can be disabled using - gnutls_certificate_send_x509_rdn_sequence().- Returns: the number of certificates processed or a negative error code on error. - Since: 2.4.0 
gnutls_certificate_set_x509_trust_file
- Function: int gnutls_certificate_set_x509_trust_file (gnutls_certificate_credentials_t cred, const char * cafile, gnutls_x509_crt_fmt_t type)
- cred: is a - gnutls_certificate_credentials_tstructure.- cafile: is a file containing the list of trusted CAs (DER or PEM list) - type: is PEM or DER - This function adds the trusted CAs in order to verify client or server certificates. In case of a client this is not required to be called if the certificates are not verified using - gnutls_certificate_verify_peers2(). This function may be called multiple times.- In case of a server the names of the CAs set here will be sent to the client if a certificate request is sent. This can be disabled using - gnutls_certificate_send_x509_rdn_sequence().- This function can also accept URLs. In that case it will import all certificates that are marked as trusted. Note that the supported URLs are the ones indicated by - gnutls_url_is_supported().- Returns: number of certificates processed, or a negative error code on error. 
gnutls_certificate_set_x509_trust_mem
- Function: int gnutls_certificate_set_x509_trust_mem (gnutls_certificate_credentials_t res, const gnutls_datum_t * ca, gnutls_x509_crt_fmt_t type)
- res: is a - gnutls_certificate_credentials_tstructure.- ca: is a list of trusted CAs or a DER certificate - type: is DER or PEM - This function adds the trusted CAs in order to verify client or server certificates. In case of a client this is not required to be called if the certificates are not verified using - gnutls_certificate_verify_peers2(). This function may be called multiple times.- In case of a server the CAs set here will be sent to the client if a certificate request is sent. This can be disabled using - gnutls_certificate_send_x509_rdn_sequence().- Returns: the number of certificates processed or a negative error code on error. 
gnutls_certificate_type_get
- Function: gnutls_certificate_type_t gnutls_certificate_type_get (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- The certificate type is by default X.509, unless it is negotiated as a TLS extension. - Returns: the currently used - gnutls_certificate_type_tcertificate type.
gnutls_certificate_type_get_id
- Function: gnutls_certificate_type_t gnutls_certificate_type_get_id (const char * name)
- name: is a certificate type name - The names are compared in a case insensitive way. - Returns: a - gnutls_certificate_type_tfor the specified in a string certificate type, or- GNUTLS_CRT_UNKNOWNon error.
gnutls_certificate_type_get_name
- Function: const char * gnutls_certificate_type_get_name (gnutls_certificate_type_t type)
- type: is a certificate type - Convert a - gnutls_certificate_type_ttype to a string.- Returns: a string that contains the name of the specified certificate type, or - NULLin case of unknown types.
gnutls_certificate_type_list
- Function: const gnutls_certificate_type_t * gnutls_certificate_type_list ( void)
- 
Get a list of certificate types. Returns: a (0)-terminated list of gnutls_certificate_type_tintegers indicating the available certificate types.
gnutls_certificate_verification_status_print
- Function: int gnutls_certificate_verification_status_print (unsigned int status, gnutls_certificate_type_t type, gnutls_datum_t * out, unsigned int flags)
- status: The status flags to be printed - type: The certificate type - out: Newly allocated datum with (0) terminated string. - flags: should be zero - This function will pretty print the status of a verification process – eg. the one obtained by - gnutls_certificate_verify_peers3().- The output - outneeds to be deallocated using- gnutls_free().- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error value.- Since: 3.1.4 
gnutls_certificate_verify_peers
- Function: int gnutls_certificate_verify_peers (gnutls_session_t session, gnutls_typed_vdata_st * data, unsigned int elements, unsigned int * status)
- session: is a gnutls session - data: an array of typed data - elements: the number of data elements - status: is the output of the verification - This function will verify the peer’s certificate and store the status in the - statusvariable as a bitwise or’d gnutls_certificate_status_t values or zero if the certificate is trusted. Note that value in- statusis set only when the return value of this function is success (i.e, failure to trust a certificate does not imply a negative return value). The default verification flags used by this function can be overridden using- gnutls_certificate_set_verify_flags(). See the documentation of- gnutls_certificate_verify_peers2()for details in the verification process.- The acceptable data types are - GNUTLS_DT_DNS_HOSTNAMEand- GNUTLS_DT_KEY_PURPOSE_OID. If a DNS hostname is provided then this function will compare the hostname in the certificate against the given. The comparison will be accurate for ascii names; non-ascii names are compared byte-by-byte. If names do not match the- GNUTLS_CERT_UNEXPECTED_OWNERstatus flag will be set.- If a key purpose OID is provided and the end-certificate contains the extended key usage PKIX extension, it will be required to be have the provided key purpose (e.g., - GNUTLS_KP_TLS_WWW_SERVER), or be marked for any purpose, otherwise verification will fail with- GNUTLS_CERT_SIGNER_CONSTRAINTS_FAILUREstatus.- Returns: a negative error code on error and - GNUTLS_E_SUCCESS(0) on success.- Since: 3.3.0 
gnutls_certificate_verify_peers2
- Function: int gnutls_certificate_verify_peers2 (gnutls_session_t session, unsigned int * status)
- session: is a gnutls session - status: is the output of the verification - This function will verify the peer’s certificate and store the status in the - statusvariable as a bitwise or’d gnutls_certificate_status_t values or zero if the certificate is trusted. Note that value in- statusis set only when the return value of this function is success (i.e, failure to trust a certificate does not imply a negative return value). The default verification flags used by this function can be overridden using- gnutls_certificate_set_verify_flags().- This function will take into account the OCSP Certificate Status TLS extension, as well as the following X.509 certificate extensions: Name Constraints, Key Usage, and Basic Constraints (pathlen). - To avoid denial of service attacks some default upper limits regarding the certificate key size and chain size are set. To override them use - gnutls_certificate_set_verify_limits().- Note that you must also check the peer’s name in order to check if the verified certificate belongs to the actual peer, see - gnutls_x509_crt_check_hostname(), or use- gnutls_certificate_verify_peers3().- Returns: a negative error code on error and - GNUTLS_E_SUCCESS(0) on success.
gnutls_certificate_verify_peers3
- Function: int gnutls_certificate_verify_peers3 (gnutls_session_t session, const char * hostname, unsigned int * status)
- session: is a gnutls session - hostname: is the expected name of the peer; may be - NULL- status: is the output of the verification - This function will verify the peer’s certificate and store the status in the - statusvariable as a bitwise or’d gnutls_certificate_status_t values or zero if the certificate is trusted. Note that value in- statusis set only when the return value of this function is success (i.e, failure to trust a certificate does not imply a negative return value). The default verification flags used by this function can be overridden using- gnutls_certificate_set_verify_flags(). See the documentation of- gnutls_certificate_verify_peers2()for details in the verification process.- If the - hostnameprovided is non-NULL then this function will compare the hostname in the certificate against the given. The comparison will be accurate for ascii names; non-ascii names are compared byte-by-byte. If names do not match the- GNUTLS_CERT_UNEXPECTED_OWNERstatus flag will be set.- In order to verify the purpose of the end-certificate (by checking the extended key usage), use - gnutls_certificate_verify_peers().- Returns: a negative error code on error and - GNUTLS_E_SUCCESS(0) on success.- Since: 3.1.4 
gnutls_check_version
- Function: const char * gnutls_check_version (const char * req_version)
- req_version: version string to compare with, or - NULL.- Check GnuTLS Library version. - See - GNUTLS_VERSIONfor a suitable- req_versionstring.- Returns: Check that the version of the library is at minimum the one given as a string in - req_versionand return the actual version string of the library; return- NULLif the condition is not met. If- NULLis passed to this function no check is done and only the version string is returned.
gnutls_cipher_get
- Function: gnutls_cipher_algorithm_t gnutls_cipher_get (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- Get currently used cipher. - Returns: the currently used cipher, a - gnutls_cipher_algorithm_ttype.
gnutls_cipher_get_id
- Function: gnutls_cipher_algorithm_t gnutls_cipher_get_id (const char * name)
- name: is a cipher algorithm name - The names are compared in a case insensitive way. - Returns: return a - gnutls_cipher_algorithm_tvalue corresponding to the specified cipher, or- GNUTLS_CIPHER_UNKNOWNon error.
gnutls_cipher_get_key_size
- Function: size_t gnutls_cipher_get_key_size (gnutls_cipher_algorithm_t algorithm)
- algorithm: is an encryption algorithm - Get key size for cipher. - Returns: length (in bytes) of the given cipher’s key size, or 0 if the given cipher is invalid. 
gnutls_cipher_get_name
- Function: const char * gnutls_cipher_get_name (gnutls_cipher_algorithm_t algorithm)
- algorithm: is an encryption algorithm - Convert a - gnutls_cipher_algorithm_ttype to a string.- Returns: a pointer to a string that contains the name of the specified cipher, or - NULL.
gnutls_cipher_list
- Function: const gnutls_cipher_algorithm_t * gnutls_cipher_list ( void)
- 
Get a list of supported cipher algorithms. Note that not necessarily all ciphers are supported as TLS cipher suites. For example, DES is not supported as a cipher suite, but is supported for other purposes (e.g., PKCS 8or similar).This function is not thread safe. Returns: a (0)-terminated list of gnutls_cipher_algorithm_tintegers indicating the available ciphers.
gnutls_cipher_suite_get_name
- Function: const char * gnutls_cipher_suite_get_name (gnutls_kx_algorithm_t kx_algorithm, gnutls_cipher_algorithm_t cipher_algorithm, gnutls_mac_algorithm_t mac_algorithm)
- kx_algorithm: is a Key exchange algorithm - cipher_algorithm: is a cipher algorithm - mac_algorithm: is a MAC algorithm - Note that the full cipher suite name must be prepended by TLS or SSL depending of the protocol in use. - Returns: a string that contains the name of a TLS cipher suite, specified by the given algorithms, or - NULL.
gnutls_cipher_suite_info
- Function: const char * gnutls_cipher_suite_info (size_t idx, unsigned char * cs_id, gnutls_kx_algorithm_t * kx, gnutls_cipher_algorithm_t * cipher, gnutls_mac_algorithm_t * mac, gnutls_protocol_t * min_version)
- idx: index of cipher suite to get information about, starts on 0. - cs_id: output buffer with room for 2 bytes, indicating cipher suite value - kx: output variable indicating key exchange algorithm, or - NULL.- cipher: output variable indicating cipher, or - NULL.- mac: output variable indicating MAC algorithm, or - NULL.- min_version: output variable indicating TLS protocol version, or - NULL.- Get information about supported cipher suites. Use the function iteratively to get information about all supported cipher suites. Call with idx=0 to get information about first cipher suite, then idx=1 and so on until the function returns NULL. - Returns: the name of - idxcipher suite, and set the information about the cipher suite in the output variables. If- idxis out of bounds,- NULLis returned.
gnutls_compression_get
- Function: gnutls_compression_method_t gnutls_compression_get (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- Get currently used compression algorithm. - Returns: the currently used compression method, a - gnutls_compression_method_tvalue.
gnutls_compression_get_id
- Function: gnutls_compression_method_t gnutls_compression_get_id (const char * name)
- name: is a compression method name - The names are compared in a case insensitive way. - Returns: an id of the specified in a string compression method, or - GNUTLS_COMP_UNKNOWNon error.
gnutls_compression_get_name
- Function: const char * gnutls_compression_get_name (gnutls_compression_method_t algorithm)
- algorithm: is a Compression algorithm - Convert a - gnutls_compression_method_tvalue to a string.- Returns: a pointer to a string that contains the name of the specified compression algorithm, or - NULL.
gnutls_compression_list
- Function: const gnutls_compression_method_t * gnutls_compression_list ( void)
- 
Get a list of compression methods. Returns: a zero-terminated list of gnutls_compression_method_tintegers indicating the available compression methods.
gnutls_credentials_clear
- Function: void gnutls_credentials_clear (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- Clears all the credentials previously set in this session. 
gnutls_credentials_get
- Function: int gnutls_credentials_get (gnutls_session_t session, gnutls_credentials_type_t type, void ** cred)
- session: is a - gnutls_session_tstructure.- type: is the type of the credentials to return - cred: will contain the pointer to the credentials structure. - Returns the previously provided credentials structures. - For - GNUTLS_CRD_ANON,- credwill be- gnutls_anon_client_credentials_tin case of a client. In case of a server it should be- gnutls_anon_server_credentials_t.- For - GNUTLS_CRD_SRP,- credwill be- gnutls_srp_client_credentials_tin case of a client, and- gnutls_srp_server_credentials_t, in case of a server.- For - GNUTLS_CRD_CERTIFICATE,- credwill be- gnutls_certificate_credentials_t.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.
gnutls_credentials_set
- Function: int gnutls_credentials_set (gnutls_session_t session, gnutls_credentials_type_t type, void * cred)
- session: is a - gnutls_session_tstructure.- type: is the type of the credentials - cred: is a pointer to a structure. - Sets the needed credentials for the specified type. Eg username, password - or public and private keys etc. The - credparameter is a structure that depends on the specified type and on the current session (client or server).- In order to minimize memory usage, and share credentials between several threads gnutls keeps a pointer to cred, and not the whole cred structure. Thus you will have to keep the structure allocated until you call - gnutls_deinit().- For - GNUTLS_CRD_ANON,- credshould be- gnutls_anon_client_credentials_tin case of a client. In case of a server it should be- gnutls_anon_server_credentials_t.- For - GNUTLS_CRD_SRP,- credshould be- gnutls_srp_client_credentials_tin case of a client, and- gnutls_srp_server_credentials_t, in case of a server.- For - GNUTLS_CRD_CERTIFICATE,- credshould be- gnutls_certificate_credentials_t.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.
gnutls_db_check_entry
- Function: int gnutls_db_check_entry (gnutls_session_t session, gnutls_datum_t session_entry)
- session: is a - gnutls_session_tstructure.- session_entry: is the session data (not key) - This function has no effect. - Returns: Returns - GNUTLS_E_EXPIRED, if the database entry has expired or 0 otherwise.
gnutls_db_check_entry_time
- Function: time_t gnutls_db_check_entry_time (gnutls_datum_t * entry)
- entry: is a pointer to a - gnutls_datum_tstructure.- This function returns the time that this entry was active. It can be used for database entry expiration. - Returns: The time this entry was created, or zero on error. 
gnutls_db_get_default_cache_expiration
- Function: unsigned gnutls_db_get_default_cache_expiration ( void)
- 
Returns the expiration time (in seconds) of stored sessions for resumption. 
gnutls_db_get_ptr
- Function: void * gnutls_db_get_ptr (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- Get db function pointer. - Returns: the pointer that will be sent to db store, retrieve and delete functions, as the first argument. 
gnutls_db_remove_session
- Function: void gnutls_db_remove_session (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- This function will remove the current session data from the session database. This will prevent future handshakes reusing these session data. This function should be called if a session was terminated abnormally, and before - gnutls_deinit()is called.- Normally - gnutls_deinit()will remove abnormally terminated sessions.
gnutls_db_set_cache_expiration
- Function: void gnutls_db_set_cache_expiration (gnutls_session_t session, int seconds)
- session: is a - gnutls_session_tstructure.- seconds: is the number of seconds. - Set the expiration time for resumed sessions. The default is 3600 (one hour) at the time of this writing. 
gnutls_db_set_ptr
- Function: void gnutls_db_set_ptr (gnutls_session_t session, void * ptr)
- session: is a - gnutls_session_tstructure.- ptr: is the pointer - Sets the pointer that will be provided to db store, retrieve and delete functions, as the first argument. 
gnutls_db_set_remove_function
- Function: void gnutls_db_set_remove_function (gnutls_session_t session, gnutls_db_remove_func rem_func)
- session: is a - gnutls_session_tstructure.- rem_func: is the function. - Sets the function that will be used to remove data from the resumed sessions database. This function must return 0 on success. - The first argument to - rem_funcwill be null unless- gnutls_db_set_ptr()has been called.
gnutls_db_set_retrieve_function
- Function: void gnutls_db_set_retrieve_function (gnutls_session_t session, gnutls_db_retr_func retr_func)
- session: is a - gnutls_session_tstructure.- retr_func: is the function. - Sets the function that will be used to retrieve data from the resumed sessions database. This function must return a gnutls_datum_t containing the data on success, or a gnutls_datum_t containing null and 0 on failure. - The datum’s data must be allocated using the function - gnutls_malloc().- The first argument to - retr_funcwill be null unless- gnutls_db_set_ptr()has been called.
gnutls_db_set_store_function
- Function: void gnutls_db_set_store_function (gnutls_session_t session, gnutls_db_store_func store_func)
- session: is a - gnutls_session_tstructure.- store_func: is the function - Sets the function that will be used to store data in the resumed sessions database. This function must return 0 on success. - The first argument to - store_funcwill be null unless- gnutls_db_set_ptr()has been called.
gnutls_deinit
- Function: void gnutls_deinit (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- This function clears all buffers associated with the - session. This function will also remove session data from the session database if the session was terminated abnormally.
gnutls_dh_get_group
- Function: int gnutls_dh_get_group (gnutls_session_t session, gnutls_datum_t * raw_gen, gnutls_datum_t * raw_prime)
- session: is a gnutls session - raw_gen: will hold the generator. - raw_prime: will hold the prime. - This function will return the group parameters used in the last Diffie-Hellman key exchange with the peer. These are the prime and the generator used. This function should be used for both anonymous and ephemeral Diffie-Hellman. The output parameters must be freed with - gnutls_free().- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise an error code is returned.
gnutls_dh_get_peers_public_bits
- Function: int gnutls_dh_get_peers_public_bits (gnutls_session_t session)
- session: is a gnutls session - Get the Diffie-Hellman public key bit size. Can be used for both anonymous and ephemeral Diffie-Hellman. - Returns: The public key bit size used in the last Diffie-Hellman key exchange with the peer, or a negative error code in case of error. 
gnutls_dh_get_prime_bits
- Function: int gnutls_dh_get_prime_bits (gnutls_session_t session)
- session: is a gnutls session - This function will return the bits of the prime used in the last Diffie-Hellman key exchange with the peer. Should be used for both anonymous and ephemeral Diffie-Hellman. Note that some ciphers, like RSA and DSA without DHE, do not use a Diffie-Hellman key exchange, and then this function will return 0. - Returns: The Diffie-Hellman bit strength is returned, or 0 if no Diffie-Hellman key exchange was done, or a negative error code on failure. 
gnutls_dh_get_pubkey
- Function: int gnutls_dh_get_pubkey (gnutls_session_t session, gnutls_datum_t * raw_key)
- session: is a gnutls session - raw_key: will hold the public key. - This function will return the peer’s public key used in the last Diffie-Hellman key exchange. This function should be used for both anonymous and ephemeral Diffie-Hellman. The output parameters must be freed with - gnutls_free().- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise an error code is returned.
gnutls_dh_get_secret_bits
- Function: int gnutls_dh_get_secret_bits (gnutls_session_t session)
- session: is a gnutls session - This function will return the bits used in the last Diffie-Hellman key exchange with the peer. Should be used for both anonymous and ephemeral Diffie-Hellman. - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise an error code is returned.
gnutls_dh_params_cpy
- Function: int gnutls_dh_params_cpy (gnutls_dh_params_t dst, gnutls_dh_params_t src)
- dst: Is the destination structure, which should be initialized. - src: Is the source structure - This function will copy the DH parameters structure from source to destination. - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.
gnutls_dh_params_deinit
- Function: void gnutls_dh_params_deinit (gnutls_dh_params_t dh_params)
- dh_params: Is a structure that holds the prime numbers - This function will deinitialize the DH parameters structure. 
gnutls_dh_params_export2_pkcs3
- Function: int gnutls_dh_params_export2_pkcs3 (gnutls_dh_params_t params, gnutls_x509_crt_fmt_t format, gnutls_datum_t * out)
- params: Holds the DH parameters - format: the format of output params. One of PEM or DER. - out: will contain a PKCS3 DHParams structure PEM or DER encoded - This function will export the given dh parameters to a PKCS3 DHParams structure. This is the format generated by "openssl dhparam" tool. The data in - outwill be allocated using- gnutls_malloc().- If the structure is PEM encoded, it will have a header of "BEGIN DH PARAMETERS". - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.- Since: 3.1.3 
gnutls_dh_params_export_pkcs3
- Function: int gnutls_dh_params_export_pkcs3 (gnutls_dh_params_t params, gnutls_x509_crt_fmt_t format, unsigned char * params_data, size_t * params_data_size)
- params: Holds the DH parameters - format: the format of output params. One of PEM or DER. - params_data: will contain a PKCS3 DHParams structure PEM or DER encoded - params_data_size: holds the size of params_data (and will be replaced by the actual size of parameters) - This function will export the given dh parameters to a PKCS3 DHParams structure. This is the format generated by "openssl dhparam" tool. If the buffer provided is not long enough to hold the output, then GNUTLS_E_SHORT_MEMORY_BUFFER will be returned. - If the structure is PEM encoded, it will have a header of "BEGIN DH PARAMETERS". - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.
gnutls_dh_params_export_raw
- Function: int gnutls_dh_params_export_raw (gnutls_dh_params_t params, gnutls_datum_t * prime, gnutls_datum_t * generator, unsigned int * bits)
- params: Holds the DH parameters - prime: will hold the new prime - generator: will hold the new generator - bits: if non null will hold the secret key’s number of bits - This function will export the pair of prime and generator for use in the Diffie-Hellman key exchange. The new parameters will be allocated using - gnutls_malloc()and will be stored in the appropriate datum.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.
gnutls_dh_params_generate2
- Function: int gnutls_dh_params_generate2 (gnutls_dh_params_t dparams, unsigned int bits)
- dparams: Is the structure that the DH parameters will be stored - bits: is the prime’s number of bits - This function will generate a new pair of prime and generator for use in the Diffie-Hellman key exchange. The new parameters will be allocated using - gnutls_malloc()and will be stored in the appropriate datum. This function is normally slow.- Do not set the number of bits directly, use - gnutls_sec_param_to_pk_bits()to get bits for- GNUTLS_PK_DSA. Also note that the DH parameters are only useful to servers. Since clients use the parameters sent by the server, it’s of no use to call this in client side.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.
gnutls_dh_params_import_pkcs3
- Function: int gnutls_dh_params_import_pkcs3 (gnutls_dh_params_t params, const gnutls_datum_t * pkcs3_params, gnutls_x509_crt_fmt_t format)
- params: A structure where the parameters will be copied to - pkcs3_params: should contain a PKCS3 DHParams structure PEM or DER encoded - format: the format of params. PEM or DER. - This function will extract the DHParams found in a PKCS3 formatted structure. This is the format generated by "openssl dhparam" tool. - If the structure is PEM encoded, it should have a header of "BEGIN DH PARAMETERS". - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.
gnutls_dh_params_import_raw
- Function: int gnutls_dh_params_import_raw (gnutls_dh_params_t dh_params, const gnutls_datum_t * prime, const gnutls_datum_t * generator)
- dh_params: Is a structure that will hold the prime numbers - prime: holds the new prime - generator: holds the new generator - This function will replace the pair of prime and generator for use in the Diffie-Hellman key exchange. The new parameters should be stored in the appropriate gnutls_datum. - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.
gnutls_dh_params_init
- Function: int gnutls_dh_params_init (gnutls_dh_params_t * dh_params)
- dh_params: Is a structure that will hold the prime numbers - This function will initialize the DH parameters structure. - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.
gnutls_dh_set_prime_bits
- Function: void gnutls_dh_set_prime_bits (gnutls_session_t session, unsigned int bits)
- session: is a - gnutls_session_tstructure.- bits: is the number of bits - This function sets the number of bits, for use in a Diffie-Hellman key exchange. This is used both in DH ephemeral and DH anonymous cipher suites. This will set the minimum size of the prime that will be used for the handshake. - In the client side it sets the minimum accepted number of bits. If a server sends a prime with less bits than that - GNUTLS_E_DH_PRIME_UNACCEPTABLEwill be returned by the handshake.- Note that values lower than 512 bits may allow decryption of the exchanged data. - The function has no effect in server side. - Note that since 3.1.7 this function is deprecated. The minimum number of bits is set by the priority string level. Also this function must be called after - gnutls_priority_set_direct()or the set value may be overridden by the selected priority options.
gnutls_digest_get_id
- Function: gnutls_digest_algorithm_t gnutls_digest_get_id (const char * name)
- name: is a digest algorithm name - Convert a string to a - gnutls_digest_algorithm_tvalue. The names are compared in a case insensitive way.- Returns: a - gnutls_digest_algorithm_tid of the specified MAC algorithm string, or- GNUTLS_DIG_UNKNOWNon failures.
gnutls_digest_get_name
- Function: const char * gnutls_digest_get_name (gnutls_digest_algorithm_t algorithm)
- algorithm: is a digest algorithm - Convert a - gnutls_digest_algorithm_tvalue to a string.- Returns: a string that contains the name of the specified digest algorithm, or - NULL.
gnutls_digest_list
- Function: const gnutls_digest_algorithm_t * gnutls_digest_list ( void)
- 
Get a list of hash (digest) algorithms supported by GnuTLS. This function is not thread safe. Returns: Return a (0)-terminated list of gnutls_digest_algorithm_tintegers indicating the available digests.
gnutls_ecc_curve_get
- Function: gnutls_ecc_curve_t gnutls_ecc_curve_get (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- Returns the currently used elliptic curve. Only valid when using an elliptic curve ciphersuite. - Returns: the currently used curve, a - gnutls_ecc_curve_ttype.- Since: 3.0 
gnutls_ecc_curve_get_name
- Function: const char * gnutls_ecc_curve_get_name (gnutls_ecc_curve_t curve)
- curve: is an ECC curve - Convert a - gnutls_ecc_curve_tvalue to a string.- Returns: a string that contains the name of the specified curve or - NULL.- Since: 3.0 
gnutls_ecc_curve_get_size
- Function: int gnutls_ecc_curve_get_size (gnutls_ecc_curve_t curve)
- curve: is an ECC curve - Returns the size in bytes of the curve. - Returns: a the size or (0). - Since: 3.0 
gnutls_ecc_curve_list
- Function: const gnutls_ecc_curve_t * gnutls_ecc_curve_list ( void)
- 
Get the list of supported elliptic curves. This function is not thread safe. Returns: Return a (0)-terminated list of gnutls_ecc_curve_tintegers indicating the available curves.
gnutls_error_is_fatal
- Function: int gnutls_error_is_fatal (int error)
- error: is a GnuTLS error code, a negative error code - If a GnuTLS function returns a negative error code you may feed that value to this function to see if the error condition is fatal to a TLS session (i.e., must be terminated). - Note that you may also want to check the error code manually, since some non-fatal errors to the protocol (such as a warning alert or a rehandshake request) may be fatal for your program. - This function is only useful if you are dealing with errors from functions that relate to a TLS session (e.g., record layer or handshake layer handling functions). - Returns: zero on non fatal errors or positive - errorvalues. Non-zero on fatal error codes.
gnutls_error_to_alert
- Function: int gnutls_error_to_alert (int err, int * level)
- err: is a negative integer - level: the alert level will be stored there - Get an alert depending on the error code returned by a gnutls function. All alerts sent by this function should be considered fatal. The only exception is when - erris- GNUTLS_E_REHANDSHAKE, where a warning alert should be sent to the peer indicating that no renegotiation will be performed.- If there is no mapping to a valid alert the alert to indicate internal error is returned. - Returns: the alert code to use for a particular error code. 
gnutls_est_record_overhead_size
- Function: size_t gnutls_est_record_overhead_size (gnutls_protocol_t version, gnutls_cipher_algorithm_t cipher, gnutls_mac_algorithm_t mac, gnutls_compression_method_t comp, unsigned int flags)
- version: is a - gnutls_protocol_tvalue- cipher: is a - gnutls_cipher_algorithm_tvalue- mac: is a - gnutls_mac_algorithm_tvalue- comp: is a - gnutls_compression_method_tvalue- flags: must be zero - This function will return the set size in bytes of the overhead due to TLS (or DTLS) per record. - Note that this function may provide inacurate values when TLS extensions that modify the record format are negotiated. In these cases a more accurate value can be obtained using - gnutls_record_overhead_size()after a completed handshake.- Since: 3.2.2 
gnutls_fingerprint
- Function: int gnutls_fingerprint (gnutls_digest_algorithm_t algo, const gnutls_datum_t * data, void * result, size_t * result_size)
- algo: is a digest algorithm - data: is the data - result: is the place where the result will be copied (may be null). - result_size: should hold the size of the result. The actual size of the returned result will also be copied there. - This function will calculate a fingerprint (actually a hash), of the given data. The result is not printable data. You should convert it to hex, or to something else printable. - This is the usual way to calculate a fingerprint of an X.509 DER encoded certificate. Note however that the fingerprint of an OpenPGP certificate is not just a hash and cannot be calculated with this function. - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise an error code is returned.
gnutls_fips140_mode_enabled
- Function: int gnutls_fips140_mode_enabled ( void)
- 
Checks whether this library is in FIPS140 mode. Returns: return non-zero if true or zero if false. Since: 3.3.0 
gnutls_global_deinit
- Function: void gnutls_global_deinit ( void)
- 
This function deinitializes the global data, that were initialized using gnutls_global_init().
gnutls_global_init
- Function: int gnutls_global_init ( void)
- 
This function performs any required precalculations, detects the supported CPU capabilities and initializes the underlying cryptographic backend. In order to free any resources taken by this call you should gnutls_global_deinit()when gnutls usage is no longer needed.This function increments a global counter, so that gnutls_global_deinit()only releases resources when it has been called as many times asgnutls_global_init(). This is useful when GnuTLS is used by more than one library in an application. This function can be called many times, but will only do something the first time.Since GnuTLS 3.3.0 this function is only required in systems that do not support library constructors and static linking. This function also became thread safe. A subsequent call of this function if the initial has failed will return the same error code. Returns: On success, GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.
gnutls_global_set_audit_log_function
- Function: void gnutls_global_set_audit_log_function (gnutls_audit_log_func log_func)
- log_func: it is the audit log function - This is the function to set the audit logging function. This is a function to report important issues, such as possible attacks in the protocol. This is different from - gnutls_global_set_log_function()because it will report also session-specific events. The session parameter will be null if there is no corresponding TLS session.- gnutls_audit_log_funcis of the form, void (*gnutls_audit_log_func)( gnutls_session_t, const char*);- Since: 3.0 
gnutls_global_set_log_function
- Function: void gnutls_global_set_log_function (gnutls_log_func log_func)
- log_func: it’s a log function - This is the function where you set the logging function gnutls is going to use. This function only accepts a character array. Normally you may not use this function since it is only used for debugging purposes. - gnutls_log_funcis of the form, void (*gnutls_log_func)( int level, const char*);
gnutls_global_set_log_level
- Function: void gnutls_global_set_log_level (int level)
- level: it’s an integer from 0 to 99. - This is the function that allows you to set the log level. The level is an integer between 0 and 9. Higher values mean more verbosity. The default value is 0. Larger values should only be used with care, since they may reveal sensitive information. - Use a log level over 10 to enable all debugging options. 
gnutls_global_set_mutex
- Function: void gnutls_global_set_mutex (mutex_init_func init, mutex_deinit_func deinit, mutex_lock_func lock, mutex_unlock_func unlock)
- init: mutex initialization function - deinit: mutex deinitialization function - lock: mutex locking function - unlock: mutex unlocking function - With this function you are allowed to override the default mutex locks used in some parts of gnutls and dependent libraries. This function should be used if you have complete control of your program and libraries. Do not call this function from a library, or preferrably from any application unless really needed to. GnuTLS will use the appropriate locks for the running system. - This function must be called prior to any other gnutls function. - Since: 2.12.0 
gnutls_global_set_time_function
- Function: void gnutls_global_set_time_function (gnutls_time_func time_func)
- time_func: it’s the system time function, a - gnutls_time_func()callback.- This is the function where you can override the default system time function. The application provided function should behave the same as the standard function. - Since: 2.12.0 
gnutls_handshake
- Function: int gnutls_handshake (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- This function does the handshake of the TLS/SSL protocol, and initializes the TLS connection. - This function will fail if any problem is encountered, and will return a negative error code. In case of a client, if the client has asked to resume a session, but the server couldn’t, then a full handshake will be performed. - The non-fatal errors such as - GNUTLS_E_AGAINand- GNUTLS_E_INTERRUPTEDinterrupt the handshake procedure, which should be resumed later. Call this function again, until it returns 0; cf.- gnutls_record_get_direction()and- gnutls_error_is_fatal().- If this function is called by a server after a rehandshake request then - GNUTLS_E_GOT_APPLICATION_DATAor- GNUTLS_E_WARNING_ALERT_RECEIVEDmay be returned. Note that these are non fatal errors, only in the specific case of a rehandshake. Their meaning is that the client rejected the rehandshake request or in the case of- GNUTLS_E_GOT_APPLICATION_DATAit might also mean that some data were pending.- Returns: - GNUTLS_E_SUCCESSon success, otherwise a negative error code.
gnutls_handshake_description_get_name
- Function: const char * gnutls_handshake_description_get_name (gnutls_handshake_description_t type)
- type: is a handshake message description - Convert a - gnutls_handshake_description_tvalue to a string.- Returns: a string that contains the name of the specified handshake message or - NULL.
gnutls_handshake_get_last_in
- Function: gnutls_handshake_description_t gnutls_handshake_get_last_in (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- This function is only useful to check where the last performed handshake failed. If the previous handshake succeed or was not performed at all then no meaningful value will be returned. - Check - gnutls_handshake_description_tin gnutls.h for the available handshake descriptions.- Returns: the last handshake message type received, a - gnutls_handshake_description_t.
gnutls_handshake_get_last_out
- Function: gnutls_handshake_description_t gnutls_handshake_get_last_out (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- This function is only useful to check where the last performed handshake failed. If the previous handshake succeed or was not performed at all then no meaningful value will be returned. - Check - gnutls_handshake_description_tin gnutls.h for the available handshake descriptions.- Returns: the last handshake message type sent, a - gnutls_handshake_description_t.
gnutls_handshake_set_hook_function
- Function: void gnutls_handshake_set_hook_function (gnutls_session_t session, unsigned int htype, int post, gnutls_handshake_hook_func func)
- session: is a - gnutls_session_tstructure- htype: the - gnutls_handshake_description_tof the message to hook at- post: - GNUTLS_HOOK_* depending on when the hook function should be called- func: is the function to be called - This function will set a callback to be called after or before the specified handshake message has been received or generated. This is a generalization of - gnutls_handshake_set_post_client_hello_function().- To call the hook function prior to the message being sent/generation use - GNUTLS_HOOK_PREas- postparameter,- GNUTLS_HOOK_POSTto call after, and- GNUTLS_HOOK_BOTHfor both cases.- This callback must return 0 on success or a gnutls error code to terminate the handshake. - Note to hook at all handshake messages use an - htypeof- GNUTLS_HANDSHAKE_ANY.- Warning: You should not use this function to terminate the handshake based on client input unless you know what you are doing. Before the handshake is finished there is no way to know if there is a man-in-the-middle attack being performed. - Returns: - GNUTLS_E_SUCCESSon success, or an error code.
gnutls_handshake_set_max_packet_length
- Function: void gnutls_handshake_set_max_packet_length (gnutls_session_t session, size_t max)
- session: is a - gnutls_session_tstructure.- max: is the maximum number. - This function will set the maximum size of all handshake messages. Handshakes over this size are rejected with - GNUTLS_E_HANDSHAKE_TOO_LARGEerror code. The default value is 48kb which is typically large enough. Set this to 0 if you do not want to set an upper limit.- The reason for restricting the handshake message sizes are to limit Denial of Service attacks. 
gnutls_handshake_set_post_client_hello_function
- Function: void gnutls_handshake_set_post_client_hello_function (gnutls_session_t session, gnutls_handshake_post_client_hello_func func)
- session: is a - gnutls_session_tstructure.- func: is the function to be called - This function will set a callback to be called after the client hello has been received (callback valid in server side only). This allows the server to adjust settings based on received extensions. - Those settings could be ciphersuites, requesting certificate, or anything else except for version negotiation (this is done before the hello message is parsed). - This callback must return 0 on success or a gnutls error code to terminate the handshake. - Warning: You should not use this function to terminate the handshake based on client input unless you know what you are doing. Before the handshake is finished there is no way to know if there is a man-in-the-middle attack being performed. 
gnutls_handshake_set_private_extensions
- Function: void gnutls_handshake_set_private_extensions (gnutls_session_t session, int allow)
- session: is a - gnutls_session_tstructure.- allow: is an integer (0 or 1) - This function will enable or disable the use of private cipher suites (the ones that start with 0xFF). By default or if - allowis 0 then these cipher suites will not be advertised nor used.- Currently GnuTLS does not include such cipher-suites or compression algorithms. - Enabling the private ciphersuites when talking to other than gnutls servers and clients may cause interoperability problems. 
gnutls_handshake_set_random
- Function: int gnutls_handshake_set_random (gnutls_session_t session, const gnutls_datum_t * random)
- session: is a - gnutls_session_tstructure.- random: a random value of 32-bytes - This function will explicitly set the server or client hello random value in the subsequent TLS handshake. The random value should be a 32-byte value. - Note that this function should not normally be used as gnutls will select automatically a random value for the handshake. - This function should not be used when resuming a session. - Returns: - GNUTLS_E_SUCCESSon success, or an error code.- Since 3.1.9 
gnutls_handshake_set_timeout
- Function: void gnutls_handshake_set_timeout (gnutls_session_t session, unsigned int ms)
- session: is a - gnutls_session_tstructure.- ms: is a timeout value in milliseconds - This function sets the timeout for the handshake process to the provided value. Use an - msvalue of zero to disable timeout.- Since: 3.1.0 
gnutls_heartbeat_allowed
- Function: int gnutls_heartbeat_allowed (gnutls_session_t session, unsigned int type)
- session: is a - gnutls_session_tstructure.- type: one of - GNUTLS_HB_LOCAL_ALLOWED_TO_SENDand- GNUTLS_HB_PEER_ALLOWED_TO_SEND- This function will check whether heartbeats are allowed to be sent or received in this session. - Returns: Non zero if heartbeats are allowed. - Since: 3.1.2 
gnutls_heartbeat_enable
- Function: void gnutls_heartbeat_enable (gnutls_session_t session, unsigned int type)
- session: is a - gnutls_session_tstructure.- type: one of the GNUTLS_HB_* flags - If this function is called with the - GNUTLS_HB_PEER_ALLOWED_TO_SEND- type, GnuTLS will allow heartbeat messages to be received. Moreover it also request the peer to accept heartbeat messages.- If the - typeused is- GNUTLS_HB_LOCAL_ALLOWED_TO_SEND, then the peer will be asked to accept heartbeat messages but not send ones.- The function - gnutls_heartbeat_allowed()can be used to test Whether locally generated heartbeat messages can be accepted by the peer.- Since: 3.1.2 
gnutls_heartbeat_get_timeout
- Function: unsigned int gnutls_heartbeat_get_timeout (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- This function will return the milliseconds remaining for a retransmission of the previously sent ping message. This function is useful when ping is used in non-blocking mode, to estimate when to call - gnutls_heartbeat_ping()if no packets have been received.- Returns: the remaining time in milliseconds. - Since: 3.1.2 
gnutls_heartbeat_ping
- Function: int gnutls_heartbeat_ping (gnutls_session_t session, size_t data_size, unsigned int max_tries, unsigned int flags)
- session: is a - gnutls_session_tstructure.- data_size: is the length of the ping payload. - max_tries: if flags is - GNUTLS_HEARTBEAT_WAITthen this sets the number of retransmissions. Use zero for indefinite (until timeout).- flags: if - GNUTLS_HEARTBEAT_WAITthen wait for pong or timeout instead of returning immediately.- This function sends a ping to the peer. If the - flagsis set to- GNUTLS_HEARTBEAT_WAITthen it waits for a reply from the peer.- Note that it is highly recommended to use this function with the flag - GNUTLS_HEARTBEAT_WAIT, or you need to handle retransmissions and timeouts manually.- Returns: - GNUTLS_E_SUCCESSon success, otherwise a negative error code.- Since: 3.1.2 
gnutls_heartbeat_pong
- Function: int gnutls_heartbeat_pong (gnutls_session_t session, unsigned int flags)
- session: is a - gnutls_session_tstructure.- flags: should be zero - This function replies to a ping by sending a pong to the peer. - Returns: - GNUTLS_E_SUCCESSon success, otherwise a negative error code.- Since: 3.1.2 
gnutls_heartbeat_set_timeouts
- Function: void gnutls_heartbeat_set_timeouts (gnutls_session_t session, unsigned int retrans_timeout, unsigned int total_timeout)
- session: is a - gnutls_session_tstructure.- retrans_timeout: The time at which a retransmission will occur in milliseconds - total_timeout: The time at which the connection will be aborted, in milliseconds. - This function will override the timeouts for the DTLS heartbeat protocol. The retransmission timeout is the time after which a message from the peer is not received, the previous request will be retransmitted. The total timeout is the time after which the handshake will be aborted with - GNUTLS_E_TIMEDOUT.- If the retransmission timeout is zero then the handshake will operate in a non-blocking way, i.e., return - GNUTLS_E_AGAIN.- Since: 3.1.2 
gnutls_hex2bin
- Function: int gnutls_hex2bin (const char * hex_data, size_t hex_size, void * bin_data, size_t * bin_size)
- hex_data: string with data in hex format - hex_size: size of hex data - bin_data: output array with binary data - bin_size: when calling should hold maximum size of - bin_data, on return will hold actual length of- bin_data.- Convert a buffer with hex data to binary data. - Returns: - GNUTLS_E_SUCCESSon success, otherwise a negative error code.- Since: 2.4.0 
gnutls_hex_decode
- Function: int gnutls_hex_decode (const gnutls_datum_t * hex_data, void * result, size_t * result_size)
- hex_data: contain the encoded data - result: the place where decoded data will be copied - result_size: holds the size of the result - This function will decode the given encoded data, using the hex encoding used by PSK password files. - Note that hex_data should be null terminated. - Returns: - GNUTLS_E_SHORT_MEMORY_BUFFERif the buffer given is not long enough, or 0 on success.
gnutls_hex_encode
- Function: int gnutls_hex_encode (const gnutls_datum_t * data, char * result, size_t * result_size)
- data: contain the raw data - result: the place where hex data will be copied - result_size: holds the size of the result - This function will convert the given data to printable data, using the hex encoding, as used in the PSK password files. - Note that the size of the result includes the null terminator. - Returns: - GNUTLS_E_SHORT_MEMORY_BUFFERif the buffer given is not long enough, or 0 on success.
gnutls_init
- Function: int gnutls_init (gnutls_session_t * session, unsigned int flags)
- session: is a pointer to a - gnutls_session_tstructure.- flags: indicate if this session is to be used for server or client. - This function initializes the current session to null. Every session must be initialized before use, so internal structures can be allocated. This function allocates structures which can only be free’d by calling - gnutls_deinit(). Returns- GNUTLS_E_SUCCESS(0) on success.- flagscan be one of- GNUTLS_CLIENTand- GNUTLS_SERVER. For a DTLS entity, the flags- GNUTLS_DATAGRAMand- GNUTLS_NONBLOCKare also available. The latter flag will enable a non-blocking operation of the DTLS timers.- The flag - GNUTLS_NO_REPLAY_PROTECTIONwill disable any replay protection in DTLS mode. That must only used when replay protection is achieved using other means.- Note that since version 3.1.2 this function enables some common TLS extensions such as session tickets and OCSP certificate status request in client side by default. To prevent that use the - GNUTLS_NO_EXTENSIONSflag.- Returns: - GNUTLS_E_SUCCESSon success, or an error code.
gnutls_key_generate
- Function: int gnutls_key_generate (gnutls_datum_t * key, unsigned int key_size)
- key: is a pointer to a - gnutls_datum_twhich will contain a newly created key.- key_size: The number of bytes of the key. - Generates a random key of - key_sizebytes.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, or an error code.- Since: 3.0 
gnutls_kx_get
- Function: gnutls_kx_algorithm_t gnutls_kx_get (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- Get currently used key exchange algorithm. - Returns: the key exchange algorithm used in the last handshake, a - gnutls_kx_algorithm_tvalue.
gnutls_kx_get_id
- Function: gnutls_kx_algorithm_t gnutls_kx_get_id (const char * name)
- name: is a KX name - Convert a string to a - gnutls_kx_algorithm_tvalue. The names are compared in a case insensitive way.- Returns: an id of the specified KX algorithm, or - GNUTLS_KX_UNKNOWNon error.
gnutls_kx_get_name
- Function: const char * gnutls_kx_get_name (gnutls_kx_algorithm_t algorithm)
- algorithm: is a key exchange algorithm - Convert a - gnutls_kx_algorithm_tvalue to a string.- Returns: a pointer to a string that contains the name of the specified key exchange algorithm, or - NULL.
gnutls_kx_list
- Function: const gnutls_kx_algorithm_t * gnutls_kx_list ( void)
- 
Get a list of supported key exchange algorithms. This function is not thread safe. Returns: a (0)-terminated list of gnutls_kx_algorithm_tintegers indicating the available key exchange algorithms.
gnutls_load_file
- Function: int gnutls_load_file (const char * filename, gnutls_datum_t * data)
- filename: the name of the file to load - data: Where the file will be stored - This function will load a file into a datum. The data are zero terminated but the terminating null is not included in length. The returned data are allocated using - gnutls_malloc().- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise an error code is returned.- Since 3.1.0 
gnutls_mac_get
- Function: gnutls_mac_algorithm_t gnutls_mac_get (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- Get currently used MAC algorithm. - Returns: the currently used mac algorithm, a - gnutls_mac_algorithm_tvalue.
gnutls_mac_get_id
- Function: gnutls_mac_algorithm_t gnutls_mac_get_id (const char * name)
- name: is a MAC algorithm name - Convert a string to a - gnutls_mac_algorithm_tvalue. The names are compared in a case insensitive way.- Returns: a - gnutls_mac_algorithm_tid of the specified MAC algorithm string, or- GNUTLS_MAC_UNKNOWNon failures.
gnutls_mac_get_key_size
- Function: size_t gnutls_mac_get_key_size (gnutls_mac_algorithm_t algorithm)
- algorithm: is an encryption algorithm - Returns the size of the MAC key used in TLS. - Returns: length (in bytes) of the given MAC key size, or 0 if the given MAC algorithm is invalid. 
gnutls_mac_get_name
- Function: const char * gnutls_mac_get_name (gnutls_mac_algorithm_t algorithm)
- algorithm: is a MAC algorithm - Convert a - gnutls_mac_algorithm_tvalue to a string.- Returns: a string that contains the name of the specified MAC algorithm, or - NULL.
gnutls_mac_list
- Function: const gnutls_mac_algorithm_t * gnutls_mac_list ( void)
- 
Get a list of hash algorithms for use as MACs. Note that not necessarily all MACs are supported in TLS cipher suites. This function is not thread safe. Returns: Return a (0)-terminated list of gnutls_mac_algorithm_tintegers indicating the available MACs.
gnutls_ocsp_status_request_enable_client
- Function: int gnutls_ocsp_status_request_enable_client (gnutls_session_t session, gnutls_datum_t * responder_id, size_t responder_id_size, gnutls_datum_t * extensions)
- session: is a - gnutls_session_tstructure.- responder_id: array with - gnutls_datum_twith DER data of responder id- responder_id_size: number of members in - responder_idarray- extensions: a - gnutls_datum_twith DER encoded OCSP extensions- This function is to be used by clients to request OCSP response from the server, using the "status_request" TLS extension. Only OCSP status type is supported. A typical server has a single OCSP response cached, so - responder_idand- extensionsshould be null.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.- Since: 3.1.3 
gnutls_ocsp_status_request_get
- Function: int gnutls_ocsp_status_request_get (gnutls_session_t session, gnutls_datum_t * response)
- session: is a - gnutls_session_tstructure.- response: a - gnutls_datum_twith DER encoded OCSP response- This function returns the OCSP status response received from the TLS server. The - responseshould be treated as constant. If no OCSP response is available then- GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLEis returned.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.- Since: 3.1.3 
gnutls_ocsp_status_request_is_checked
- Function: int gnutls_ocsp_status_request_is_checked (gnutls_session_t session, unsigned int flags)
- session: is a gnutls session - flags: should be zero - Check whether an OCSP status response was included in the handshake and whether it was checked and valid (not too old or superseded). This is a helper function when needing to decide whether to perform an OCSP validity check on the peer’s certificate. Must be called after - gnutls_certificate_verify_peers3()is called.- Returns: non zero it was valid, or a zero if it wasn’t sent, or sent and was invalid. 
gnutls_openpgp_send_cert
- Function: void gnutls_openpgp_send_cert (gnutls_session_t session, gnutls_openpgp_crt_status_t status)
- session: is a pointer to a - gnutls_session_tstructure.- status: is one of GNUTLS_OPENPGP_CERT, or GNUTLS_OPENPGP_CERT_FINGERPRINT - This function will order gnutls to send the key fingerprint instead of the key in the initial handshake procedure. This should be used with care and only when there is indication or knowledge that the server can obtain the client’s key. 
gnutls_pem_base64_decode
- Function: int gnutls_pem_base64_decode (const char * header, const gnutls_datum_t * b64_data, unsigned char * result, size_t * result_size)
- header: A null terminated string with the PEM header (eg. CERTIFICATE) - b64_data: contain the encoded data - result: the place where decoded data will be copied - result_size: holds the size of the result - This function will decode the given encoded data. If the header given is non null this function will search for "—–BEGIN header" and decode only this part. Otherwise it will decode the first PEM packet found. - Returns: On success - GNUTLS_E_SUCCESS(0) is returned,- GNUTLS_E_SHORT_MEMORY_BUFFERis returned if the buffer given is not long enough, or 0 on success.
gnutls_pem_base64_decode_alloc
- Function: int gnutls_pem_base64_decode_alloc (const char * header, const gnutls_datum_t * b64_data, gnutls_datum_t * result)
- header: The PEM header (eg. CERTIFICATE) - b64_data: contains the encoded data - result: the place where decoded data lie - This function will decode the given encoded data. The decoded data will be allocated, and stored into result. If the header given is non null this function will search for "—–BEGIN header" and decode only this part. Otherwise it will decode the first PEM packet found. - You should use - gnutls_free()to free the returned data.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise an error code is returned.
gnutls_pem_base64_encode
- Function: int gnutls_pem_base64_encode (const char * msg, const gnutls_datum_t * data, char * result, size_t * result_size)
- msg: is a message to be put in the header - data: contain the raw data - result: the place where base64 data will be copied - result_size: holds the size of the result - This function will convert the given data to printable data, using the base64 encoding. This is the encoding used in PEM messages. - The output string will be null terminated, although the size will not include the terminating null. - Returns: On success - GNUTLS_E_SUCCESS(0) is returned,- GNUTLS_E_SHORT_MEMORY_BUFFERis returned if the buffer given is not long enough, or 0 on success.
gnutls_pem_base64_encode_alloc
- Function: int gnutls_pem_base64_encode_alloc (const char * msg, const gnutls_datum_t * data, gnutls_datum_t * result)
- msg: is a message to be put in the encoded header - data: contains the raw data - result: will hold the newly allocated encoded data - This function will convert the given data to printable data, using the base64 encoding. This is the encoding used in PEM messages. This function will allocate the required memory to hold the encoded data. - You should use - gnutls_free()to free the returned data.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise an error code is returned.
gnutls_perror
- Function: void gnutls_perror (int error)
- error: is a GnuTLS error code, a negative error code - This function is like - perror(). The only difference is that it accepts an error number returned by a gnutls function.
gnutls_pk_algorithm_get_name
- Function: const char * gnutls_pk_algorithm_get_name (gnutls_pk_algorithm_t algorithm)
- algorithm: is a pk algorithm - Convert a - gnutls_pk_algorithm_tvalue to a string.- Returns: a string that contains the name of the specified public key algorithm, or - NULL.
gnutls_pk_bits_to_sec_param
- Function: gnutls_sec_param_t gnutls_pk_bits_to_sec_param (gnutls_pk_algorithm_t algo, unsigned int bits)
- algo: is a public key algorithm - bits: is the number of bits - This is the inverse of - gnutls_sec_param_to_pk_bits(). Given an algorithm and the number of bits, it will return the security parameter. This is a rough indication.- Returns: The security parameter. - Since: 2.12.0 
gnutls_pk_get_id
- Function: gnutls_pk_algorithm_t gnutls_pk_get_id (const char * name)
- name: is a string containing a public key algorithm name. - Convert a string to a - gnutls_pk_algorithm_tvalue. The names are compared in a case insensitive way. For example, gnutls_pk_get_id("RSA") will return- GNUTLS_PK_RSA.- Returns: a - gnutls_pk_algorithm_tid of the specified public key algorithm string, or- GNUTLS_PK_UNKNOWNon failures.- Since: 2.6.0 
gnutls_pk_get_name
- Function: const char * gnutls_pk_get_name (gnutls_pk_algorithm_t algorithm)
- algorithm: is a public key algorithm - Convert a - gnutls_pk_algorithm_tvalue to a string.- Returns: a pointer to a string that contains the name of the specified public key algorithm, or - NULL.- Since: 2.6.0 
gnutls_pk_list
- Function: const gnutls_pk_algorithm_t * gnutls_pk_list ( void)
- 
Get a list of supported public key algorithms. This function is not thread safe. Returns: a (0)-terminated list of gnutls_pk_algorithm_tintegers indicating the available ciphers.Since: 2.6.0 
gnutls_pk_to_sign
- Function: gnutls_sign_algorithm_t gnutls_pk_to_sign (gnutls_pk_algorithm_t pk, gnutls_digest_algorithm_t hash)
- pk: is a public key algorithm - hash: a hash algorithm - This function maps public key and hash algorithms combinations to signature algorithms. - Returns: return a - gnutls_sign_algorithm_tvalue, or- GNUTLS_SIGN_UNKNOWNon error.
gnutls_prf
- Function: int gnutls_prf (gnutls_session_t session, size_t label_size, const char * label, int server_random_first, size_t extra_size, const char * extra, size_t outsize, char * out)
- session: is a - gnutls_session_tstructure.- label_size: length of the - labelvariable.- label: label used in PRF computation, typically a short string. - server_random_first: non-0 if server random field should be first in seed - extra_size: length of the - extravariable.- extra: optional extra data to seed the PRF with. - outsize: size of pre-allocated output buffer to hold the output. - out: pre-allocated buffer to hold the generated data. - Applies the TLS Pseudo-Random-Function (PRF) on the master secret and the provided data, seeded with the client and server random fields, as specified in RFC5705. - The - labelvariable usually contains a string denoting the purpose for the generated data. The- server_random_firstindicates whether the client random field or the server random field should be first in the seed. Non-0 indicates that the server random field is first, 0 that the client random field is first.- The - extravariable can be used to add more data to the seed, after the random variables. It can be used to make sure the generated output is strongly connected to some additional data (e.g., a string used in user authentication).- The output is placed in - out, which must be pre-allocated.- Returns: - GNUTLS_E_SUCCESSon success, or an error code.
gnutls_prf_raw
- Function: int gnutls_prf_raw (gnutls_session_t session, size_t label_size, const char * label, size_t seed_size, const char * seed, size_t outsize, char * out)
- session: is a - gnutls_session_tstructure.- label_size: length of the - labelvariable.- label: label used in PRF computation, typically a short string. - seed_size: length of the - seedvariable.- seed: optional extra data to seed the PRF with. - outsize: size of pre-allocated output buffer to hold the output. - out: pre-allocated buffer to hold the generated data. - Apply the TLS Pseudo-Random-Function (PRF) on the master secret and the provided data. - The - labelvariable usually contains a string denoting the purpose for the generated data. The- seedusually contains data such as the client and server random, perhaps together with some additional data that is added to guarantee uniqueness of the output for a particular purpose.- Because the output is not guaranteed to be unique for a particular session unless - seedincludes the client random and server random fields (the PRF would output the same data on another connection resumed from the first one), it is not recommended to use this function directly. The- gnutls_prf()function seeds the PRF with the client and server random fields directly, and is recommended if you want to generate pseudo random data unique for each session.- Returns: - GNUTLS_E_SUCCESSon success, or an error code.
gnutls_priority_certificate_type_list
- Function: int gnutls_priority_certificate_type_list (gnutls_priority_t pcache, const unsigned int ** list)
- pcache: is a - gnutls_prioritity_tstructure.- list: will point to an integer list - Get a list of available certificate types in the priority structure. - Returns: the number of certificate types, or an error code. - Since: 3.0 
gnutls_priority_cipher_list
- Function: int gnutls_priority_cipher_list (gnutls_priority_t pcache, const unsigned int ** list)
- pcache: is a - gnutls_prioritity_tstructure.- list: will point to an integer list - Get a list of available ciphers in the priority structure. - Returns: the number of curves, or an error code. - Since: 3.2.3 
gnutls_priority_compression_list
- Function: int gnutls_priority_compression_list (gnutls_priority_t pcache, const unsigned int ** list)
- pcache: is a - gnutls_prioritity_tstructure.- list: will point to an integer list - Get a list of available compression method in the priority structure. - Returns: the number of methods, or an error code. - Since: 3.0 
gnutls_priority_deinit
- Function: void gnutls_priority_deinit (gnutls_priority_t priority_cache)
- priority_cache: is a - gnutls_prioritity_tstructure.- Deinitializes the priority cache. 
gnutls_priority_ecc_curve_list
- Function: int gnutls_priority_ecc_curve_list (gnutls_priority_t pcache, const unsigned int ** list)
- pcache: is a - gnutls_prioritity_tstructure.- list: will point to an integer list - Get a list of available elliptic curves in the priority structure. - Returns: the number of curves, or an error code. - Since: 3.0 
gnutls_priority_get_cipher_suite_index
- Function: int gnutls_priority_get_cipher_suite_index (gnutls_priority_t pcache, unsigned int idx, unsigned int * sidx)
- pcache: is a - gnutls_prioritity_tstructure.- idx: is an index number. - sidx: internal index of cipher suite to get information about. - Provides the internal ciphersuite index to be used with - gnutls_cipher_suite_info(). The index- idxprovided is an index kept at the priorities structure. It might be that a valid priorities index does not correspond to a ciphersuite and in that case- GNUTLS_E_UNKNOWN_CIPHER_SUITEwill be returned. Once the last available index is crossed then- GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLEwill be returned.- Returns: On success it returns - GNUTLS_E_SUCCESS(0), or a negative error value otherwise.
gnutls_priority_init
- Function: int gnutls_priority_init (gnutls_priority_t * priority_cache, const char * priorities, const char ** err_pos)
- priority_cache: is a - gnutls_prioritity_tstructure.- priorities: is a string describing priorities - err_pos: In case of an error this will have the position in the string the error occured - Sets priorities for the ciphers, key exchange methods, macs and compression methods. - The - prioritiesoption allows you to specify a colon separated list of the cipher priorities to enable. Some keywords are defined to provide quick access to common preferences.- Unless there is a special need, use the "NORMAL" keyword to apply a reasonable security level, or "NORMAL: - COMPAT" for compatibility.- "PERFORMANCE" means all the "secure" ciphersuites are enabled, limited to 128 bit ciphers and sorted by terms of speed performance. - "LEGACY" the NORMAL settings for GnuTLS 3.2.x or earlier. There is no verification profile set, and the allowed DH primes are considered weak today. - "NORMAL" means all "secure" ciphersuites. The 256-bit ciphers are included as a fallback only. The ciphers are sorted by security margin. - "PFS" means all "secure" ciphersuites that support perfect forward secrecy. The 256-bit ciphers are included as a fallback only. The ciphers are sorted by security margin. - "SECURE128" means all "secure" ciphersuites of security level 128-bit or more. - "SECURE192" means all "secure" ciphersuites of security level 192-bit or more. - "SUITEB128" means all the NSA SuiteB ciphersuites with security level of 128. - "SUITEB192" means all the NSA SuiteB ciphersuites with security level of 192. - "EXPORT" means all ciphersuites are enabled, including the low-security 40 bit ciphers. - "NONE" means nothing is enabled. This disables even protocols and compression methods. - " - KEYWORD" The system administrator imposed settings. The provided keywords will be expanded from a configuration-time provided file - default is: /etc/gnutls/default-priorities. Any keywords that follow it, will be appended to the expanded string. If there is no system string, then the function will fail. The system file should be formatted as "KEYWORD=VALUE", e.g., "SYSTEM=NORMAL:-ARCFOUR-128".- Special keywords are "!", "-" and "+". "!" or "-" appended with an algorithm will remove this algorithm. "+" appended with an algorithm will add this algorithm. - Check the GnuTLS manual section "Priority strings" for detailed information. - Examples: "NONE:+VERS-TLS-ALL:+MAC-ALL:+RSA:+AES-128-CBC:+SIGN-ALL:+COMP-NULL" - "NORMAL:-ARCFOUR-128" means normal ciphers except for ARCFOUR-128. - "SECURE128:-VERS-SSL3.0:+COMP-DEFLATE" means that only secure ciphers are enabled, SSL3.0 is disabled, and libz compression enabled. - "NONE:+VERS-TLS-ALL:+AES-128-CBC:+RSA:+SHA1:+COMP-NULL:+SIGN-RSA-SHA1", - "NONE:+VERS-TLS-ALL:+AES-128-CBC:+ECDHE-RSA:+SHA1:+COMP-NULL:+SIGN-RSA-SHA1:+CURVE-SECP256R1", - "SECURE256:+SECURE128", - Note that "NORMAL: - COMPAT" is the most compatible mode.- Returns: On syntax error - GNUTLS_E_INVALID_REQUESTis returned,- GNUTLS_E_SUCCESSon success, or an error code.
gnutls_priority_kx_list
- Function: int gnutls_priority_kx_list (gnutls_priority_t pcache, const unsigned int ** list)
- pcache: is a - gnutls_prioritity_tstructure.- list: will point to an integer list - Get a list of available key exchange methods in the priority structure. - Returns: the number of curves, or an error code. - Since: 3.2.3 
gnutls_priority_mac_list
- Function: int gnutls_priority_mac_list (gnutls_priority_t pcache, const unsigned int ** list)
- pcache: is a - gnutls_prioritity_tstructure.- list: will point to an integer list - Get a list of available MAC algorithms in the priority structure. - Returns: the number of curves, or an error code. - Since: 3.2.3 
gnutls_priority_protocol_list
- Function: int gnutls_priority_protocol_list (gnutls_priority_t pcache, const unsigned int ** list)
- pcache: is a - gnutls_prioritity_tstructure.- list: will point to an integer list - Get a list of available TLS version numbers in the priority structure. - Returns: the number of protocols, or an error code. - Since: 3.0 
gnutls_priority_set
- Function: int gnutls_priority_set (gnutls_session_t session, gnutls_priority_t priority)
- session: is a - gnutls_session_tstructure.- priority: is a - gnutls_priority_tstructure.- Sets the priorities to use on the ciphers, key exchange methods, macs and compression methods. - Returns: - GNUTLS_E_SUCCESSon success, or an error code.
gnutls_priority_set_direct
- Function: int gnutls_priority_set_direct (gnutls_session_t session, const char * priorities, const char ** err_pos)
- session: is a - gnutls_session_tstructure.- priorities: is a string describing priorities - err_pos: In case of an error this will have the position in the string the error occured - Sets the priorities to use on the ciphers, key exchange methods, macs and compression methods. This function avoids keeping a priority cache and is used to directly set string priorities to a TLS session. For documentation check the - gnutls_priority_init().- To simply use a reasonable default, consider using - gnutls_set_default_priority().- Returns: On syntax error - GNUTLS_E_INVALID_REQUESTis returned,- GNUTLS_E_SUCCESSon success, or an error code.
gnutls_priority_sign_list
- Function: int gnutls_priority_sign_list (gnutls_priority_t pcache, const unsigned int ** list)
- pcache: is a - gnutls_prioritity_tstructure.- list: will point to an integer list - Get a list of available signature algorithms in the priority structure. - Returns: the number of algorithms, or an error code. - Since: 3.0 
gnutls_protocol_get_id
- Function: gnutls_protocol_t gnutls_protocol_get_id (const char * name)
- name: is a protocol name - The names are compared in a case insensitive way. - Returns: an id of the specified protocol, or - GNUTLS_VERSION_UNKNOWNon error.
gnutls_protocol_get_name
- Function: const char * gnutls_protocol_get_name (gnutls_protocol_t version)
- version: is a (gnutls) version number - Convert a - gnutls_protocol_tvalue to a string.- Returns: a string that contains the name of the specified TLS version (e.g., "TLS1.0"), or - NULL.
gnutls_protocol_get_version
- Function: gnutls_protocol_t gnutls_protocol_get_version (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- Get TLS version, a - gnutls_protocol_tvalue.- Returns: The version of the currently used protocol. 
gnutls_protocol_list
- Function: const gnutls_protocol_t * gnutls_protocol_list ( void)
- 
Get a list of supported protocols, e.g. SSL 3.0, TLS 1.0 etc. This function is not thread safe. Returns: a (0)-terminated list of gnutls_protocol_tintegers indicating the available protocols.
gnutls_psk_allocate_client_credentials
- Function: int gnutls_psk_allocate_client_credentials (gnutls_psk_client_credentials_t * sc)
- sc: is a pointer to a - gnutls_psk_server_credentials_tstructure.- This structure is complex enough to manipulate directly thus this helper function is provided in order to allocate it. - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise an error code is returned.
gnutls_psk_allocate_server_credentials
- Function: int gnutls_psk_allocate_server_credentials (gnutls_psk_server_credentials_t * sc)
- sc: is a pointer to a - gnutls_psk_server_credentials_tstructure.- This structure is complex enough to manipulate directly thus this helper function is provided in order to allocate it. - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise an error code is returned.
gnutls_psk_client_get_hint
- Function: const char * gnutls_psk_client_get_hint (gnutls_session_t session)
- session: is a gnutls session - The PSK identity hint may give the client help in deciding which username to use. This should only be called in case of PSK authentication and in case of a client. - Returns: the identity hint of the peer, or - NULLin case of an error.- Since: 2.4.0 
gnutls_psk_free_client_credentials
- Function: void gnutls_psk_free_client_credentials (gnutls_psk_client_credentials_t sc)
- sc: is a - gnutls_psk_client_credentials_tstructure.- This structure is complex enough to manipulate directly thus this helper function is provided in order to free (deallocate) it. 
gnutls_psk_free_server_credentials
- Function: void gnutls_psk_free_server_credentials (gnutls_psk_server_credentials_t sc)
- sc: is a - gnutls_psk_server_credentials_tstructure.- This structure is complex enough to manipulate directly thus this helper function is provided in order to free (deallocate) it. 
gnutls_psk_server_get_username
- Function: const char * gnutls_psk_server_get_username (gnutls_session_t session)
- session: is a gnutls session - This should only be called in case of PSK authentication and in case of a server. - Returns: the username of the peer, or - NULLin case of an error.
gnutls_psk_set_client_credentials
- Function: int gnutls_psk_set_client_credentials (gnutls_psk_client_credentials_t res, const char * username, const gnutls_datum_t * key, gnutls_psk_key_flags flags)
- res: is a - gnutls_psk_client_credentials_tstructure.- username: is the user’s zero-terminated userid - key: is the user’s key - flags: indicate the format of the key, either - GNUTLS_PSK_KEY_RAWor- GNUTLS_PSK_KEY_HEX.- This function sets the username and password, in a gnutls_psk_client_credentials_t structure. Those will be used in PSK authentication. - usernameshould be an ASCII string or UTF-8 strings prepared using the "SASLprep" profile of "stringprep". The key can be either in raw byte format or in Hex format (without the 0x prefix).- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise an error code is returned.
gnutls_psk_set_client_credentials_function
- Function: void gnutls_psk_set_client_credentials_function (gnutls_psk_client_credentials_t cred, gnutls_psk_client_credentials_function * func)
- cred: is a - gnutls_psk_server_credentials_tstructure.- func: is the callback function - This function can be used to set a callback to retrieve the username and password for client PSK authentication. The callback’s function form is: int (*callback)(gnutls_session_t, char** username, gnutls_datum_t* key); - The - usernameand- key->data must be allocated using- gnutls_malloc().- usernameshould be ASCII strings or UTF-8 strings prepared using the "SASLprep" profile of "stringprep".- The callback function will be called once per handshake. - The callback function should return 0 on success. -1 indicates an error. 
gnutls_psk_set_params_function
- Function: void gnutls_psk_set_params_function (gnutls_psk_server_credentials_t res, gnutls_params_function * func)
- res: is a gnutls_psk_server_credentials_t structure - func: is the function to be called - This function will set a callback in order for the server to get the Diffie-Hellman or RSA parameters for PSK authentication. The callback should return - GNUTLS_E_SUCCESS(0) on success.
gnutls_psk_set_server_credentials_file
- Function: int gnutls_psk_set_server_credentials_file (gnutls_psk_server_credentials_t res, const char * password_file)
- res: is a - gnutls_psk_server_credentials_tstructure.- password_file: is the PSK password file (passwd.psk) - This function sets the password file, in a - gnutls_psk_server_credentials_tstructure. This password file holds usernames and keys and will be used for PSK authentication.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise an error code is returned.
gnutls_psk_set_server_credentials_function
- Function: void gnutls_psk_set_server_credentials_function (gnutls_psk_server_credentials_t cred, gnutls_psk_server_credentials_function * func)
- cred: is a - gnutls_psk_server_credentials_tstructure.- func: is the callback function - This function can be used to set a callback to retrieve the user’s PSK credentials. The callback’s function form is: int (*callback)(gnutls_session_t, const char* username, gnutls_datum_t* key); - usernamecontains the actual username. The- keymust be filled in using the- gnutls_malloc().- In case the callback returned a negative number then gnutls will assume that the username does not exist. - The callback function will only be called once per handshake. The callback function should return 0 on success, while -1 indicates an error. 
gnutls_psk_set_server_credentials_hint
- Function: int gnutls_psk_set_server_credentials_hint (gnutls_psk_server_credentials_t res, const char * hint)
- res: is a - gnutls_psk_server_credentials_tstructure.- hint: is the PSK identity hint string - This function sets the identity hint, in a - gnutls_psk_server_credentials_tstructure. This hint is sent to the client to help it chose a good PSK credential (i.e., username and password).- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise an error code is returned.- Since: 2.4.0 
gnutls_psk_set_server_dh_params
- Function: void gnutls_psk_set_server_dh_params (gnutls_psk_server_credentials_t res, gnutls_dh_params_t dh_params)
- res: is a gnutls_psk_server_credentials_t structure - dh_params: is a structure that holds Diffie-Hellman parameters. - This function will set the Diffie-Hellman parameters for an anonymous server to use. These parameters will be used in Diffie-Hellman exchange with PSK cipher suites. 
gnutls_psk_set_server_params_function
- Function: void gnutls_psk_set_server_params_function (gnutls_psk_server_credentials_t res, gnutls_params_function * func)
- res: is a - gnutls_certificate_credentials_tstructure- func: is the function to be called - This function will set a callback in order for the server to get the Diffie-Hellman parameters for PSK authentication. The callback should return - GNUTLS_E_SUCCESS(0) on success.
gnutls_random_art
- Function: int gnutls_random_art (gnutls_random_art_t type, const char * key_type, unsigned int key_size, void * fpr, size_t fpr_size, gnutls_datum_t * art)
- type: The type of the random art - key_type: The type of the key (RSA, DSA etc.) - key_size: The size of the key in bits - fpr: The fingerprint of the key - fpr_size: The size of the fingerprint - art: The returned random art - This function will convert a given fingerprint to an "artistic" image. The returned image is allocated using - gnutls_malloc()- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise an error code is returned.
gnutls_range_split
- Function: int gnutls_range_split (gnutls_session_t session, const gnutls_range_st * orig, gnutls_range_st * next, gnutls_range_st * remainder)
- session: is a - gnutls_session_tstructure- orig: is the original range provided by the user - next: is the returned range that can be conveyed in a TLS record - remainder: is the returned remaining range - This function should be used when it is required to hide the length of very long data that cannot be directly provided to - gnutls_record_send_range(). In that case this function should be called with the desired length hiding range in- orig. The returned- nextvalue should then be used in the next call to- gnutls_record_send_range()with the partial data. That process should be repeated until- remainderis (0,0).- Returns: 0 in case splitting succeeds, non zero in case of error. Note that - origis not changed, while the values of- nextand- remainderare modified to store the resulting values.
gnutls_record_can_use_length_hiding
- Function: int gnutls_record_can_use_length_hiding (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- If the session supports length-hiding padding, you can invoke - gnutls_range_send_message()to send a message whose length is hidden in the given range. If the session does not support length hiding padding, you can use the standard- gnutls_record_send()function, or- gnutls_range_send_message()making sure that the range is the same as the length of the message you are trying to send.- Returns: true (1) if the current session supports length-hiding padding, false (0) if the current session does not. 
gnutls_record_check_corked
- Function: size_t gnutls_record_check_corked (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- This function checks if there pending corked data in the gnutls buffers –see - gnutls_cork().- Returns: Returns the size of the corked data or zero. - Since: 3.2.8 
gnutls_record_check_pending
- Function: size_t gnutls_record_check_pending (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- This function checks if there are unread data in the gnutls buffers. If the return value is non-zero the next call to - gnutls_record_recv()is guaranteed not to block.- Returns: Returns the size of the data or zero. 
gnutls_record_cork
- Function: void gnutls_record_cork (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- If called - gnutls_record_send()will no longer send partial records. All queued records will be sent when- gnutls_uncork()is called, or when the maximum record size is reached.- This function is safe to use with DTLS after GnuTLS 3.3.0. - Since: 3.1.9 
gnutls_record_disable_padding
- Function: void gnutls_record_disable_padding (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- Used to disabled padding in TLS 1.0 and above. Normally you do not need to use this function, but there are buggy clients that complain if a server pads the encrypted data. This of course will disable protection against statistical attacks on the data. - This functions is defunt since 3.1.7. Random padding is disabled by default unless requested using - gnutls_range_send_message().
gnutls_record_get_direction
- Function: int gnutls_record_get_direction (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- This function provides information about the internals of the record protocol and is only useful if a prior gnutls function call (e.g. - gnutls_handshake()) was interrupted for some reason, that is, if a function returned- GNUTLS_E_INTERRUPTEDor- GNUTLS_E_AGAIN. In such a case, you might want to call- select()or- poll()before calling the interrupted gnutls function again. To tell you whether a file descriptor should be selected for either reading or writing,- gnutls_record_get_direction()returns 0 if the interrupted function was trying to read data, and 1 if it was trying to write data.- Returns: 0 if trying to read data, 1 if trying to write data. 
gnutls_record_get_max_size
- Function: size_t gnutls_record_get_max_size (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- Get the record size. The maximum record size is negotiated by the client after the first handshake message. - Returns: The maximum record packet size in this connection. 
gnutls_record_overhead_size
- Function: size_t gnutls_record_overhead_size (gnutls_session_t session)
- session: is - gnutls_session_t- This function will return the set size in bytes of the overhead due to TLS (or DTLS) per record. - Since: 3.2.2 
gnutls_record_recv
- Function: ssize_t gnutls_record_recv (gnutls_session_t session, void * data, size_t data_size)
- session: is a - gnutls_session_tstructure.- data: the buffer that the data will be read into - data_size: the number of requested bytes - This function has the similar semantics with - recv(). The only difference is that it accepts a GnuTLS session, and uses different error codes. In the special case that a server requests a renegotiation, the client may receive an error code of- GNUTLS_E_REHANDSHAKE. This message may be simply ignored, replied with an alert- GNUTLS_A_NO_RENEGOTIATION, or replied with a new handshake, depending on the client’s will. If- EINTRis returned by the internal push function (the default is- recv()) then- GNUTLS_E_INTERRUPTEDwill be returned. If- GNUTLS_E_INTERRUPTEDor- GNUTLS_E_AGAINis returned, you must call this function again to get the data. See also- gnutls_record_get_direction(). A server may also receive- GNUTLS_E_REHANDSHAKEwhen a client has initiated a handshake. In that case the server can only initiate a handshake or terminate the connection.- Returns: The number of bytes received and zero on EOF (for stream connections). A negative error code is returned in case of an error. The number of bytes received might be less than the requested - data_size.
gnutls_record_recv_seq
- Function: ssize_t gnutls_record_recv_seq (gnutls_session_t session, void * data, size_t data_size, unsigned char * seq)
- session: is a - gnutls_session_tstructure.- data: the buffer that the data will be read into - data_size: the number of requested bytes - seq: is the packet’s 64-bit sequence number. Should have space for 8 bytes. - This function is the same as - gnutls_record_recv(), except that it returns in addition to data, the sequence number of the data. This is useful in DTLS where record packets might be received out-of-order. The returned 8-byte sequence number is an integer in big-endian format and should be treated as a unique message identification.- Returns: The number of bytes received and zero on EOF. A negative error code is returned in case of an error. The number of bytes received might be less than - data_size.- Since: 3.0 
gnutls_record_send
- Function: ssize_t gnutls_record_send (gnutls_session_t session, const void * data, size_t data_size)
- session: is a - gnutls_session_tstructure.- data: contains the data to send - data_size: is the length of the data - This function has the similar semantics with - send(). The only difference is that it accepts a GnuTLS session, and uses different error codes. Note that if the send buffer is full,- send()will block this function. See the- send()documentation for more information.- You can replace the default push function which is - send(), by using- gnutls_transport_set_push_function().- If the EINTR is returned by the internal push function then - GNUTLS_E_INTERRUPTEDwill be returned. If- GNUTLS_E_INTERRUPTEDor- GNUTLS_E_AGAINis returned, you must call this function again, with the exact same parameters; alternatively you could provide a- NULLpointer for data, and 0 for size. cf.- gnutls_record_get_direction().- Note that in DTLS this function will return the - GNUTLS_E_LARGE_PACKETerror code if the send data exceed the data MTU value - as returned by- gnutls_dtls_get_data_mtu(). The errno value EMSGSIZE also maps to- GNUTLS_E_LARGE_PACKET. Note that since 3.2.13 this function can be called under cork in DTLS mode, and will refuse to send data over the MTU size by returning- GNUTLS_E_LARGE_PACKET.- Returns: The number of bytes sent, or a negative error code. The number of bytes sent might be less than - data_size. The maximum number of bytes this function can send in a single call depends on the negotiated maximum record size.
gnutls_record_send_range
- Function: ssize_t gnutls_record_send_range (gnutls_session_t session, const void * data, size_t data_size, const gnutls_range_st * range)
- session: is a - gnutls_session_tstructure.- data: contains the data to send. - data_size: is the length of the data. - range: is the range of lengths in which the real data length must be hidden. - This function operates like - gnutls_record_send()but, while- gnutls_record_send()adds minimal padding to each TLS record, this function uses the TLS extra-padding feature to conceal the real data size within the range of lengths provided. Some TLS sessions do not support extra padding (e.g. stream ciphers in standard TLS or SSL3 sessions). To know whether the current session supports extra padding, and hence length hiding, use the- gnutls_record_can_use_length_hiding()function.- Note: This function currently is only limited to blocking sockets. - Returns: The number of bytes sent (that is data_size in a successful invocation), or a negative error code. 
gnutls_record_set_max_empty_records
- Function: void gnutls_record_set_max_empty_records (gnutls_session_t session, const unsigned int i)
- session: is a - gnutls_session_tstructure.- i: is the desired value of maximum empty records that can be accepted in a row. - Used to set the maximum number of empty fragments that can be accepted in a row. Accepting many empty fragments is useful for receiving length-hidden content, where empty fragments filled with pad are sent to hide the real length of a message. However, a malicious peer could send empty fragments to mount a DoS attack, so as a safety measure, a maximum number of empty fragments is accepted by default. If you know your application must accept a given number of empty fragments in a row, you can use this function to set the desired value. 
gnutls_record_set_max_size
- Function: ssize_t gnutls_record_set_max_size (gnutls_session_t session, size_t size)
- session: is a - gnutls_session_tstructure.- size: is the new size - This function sets the maximum record packet size in this connection. This property can only be set to clients. The server may choose not to accept the requested size. - Acceptable values are 512(=2^9), 1024(=2^10), 2048(=2^11) and 4096(=2^12). The requested record size does get in effect immediately only while sending data. The receive part will take effect after a successful handshake. - This function uses a TLS extension called ’max record size’. Not all TLS implementations use or even understand this extension. - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.
gnutls_record_set_timeout
- Function: void gnutls_record_set_timeout (gnutls_session_t session, unsigned int ms)
- session: is a - gnutls_session_tstructure.- ms: is a timeout value in milliseconds - This function sets the receive timeout for the record layer to the provided value. Use an - msvalue of zero to disable timeout (the default).- Since: 3.1.7 
gnutls_record_uncork
- Function: int gnutls_record_uncork (gnutls_session_t session, unsigned int flags)
- session: is a - gnutls_session_tstructure.- flags: Could be zero or - GNUTLS_RECORD_WAIT- This resets the effect of - gnutls_cork(), and flushes any pending data. If the- GNUTLS_RECORD_WAITflag is specified then this function will block until the data is sent or a fatal error occurs (i.e., the function will retry on- GNUTLS_E_AGAINand- GNUTLS_E_INTERRUPTED).- If the flag - GNUTLS_RECORD_WAITis not specified and the function is interrupted then the- GNUTLS_E_AGAINor- GNUTLS_E_INTERRUPTEDerrors will be returned. To obtain the data left in the corked buffer use- gnutls_record_check_corked().- Returns: On success the number of transmitted data is returned, or otherwise a negative error code. - Since: 3.1.9 
gnutls_rehandshake
- Function: int gnutls_rehandshake (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- This function will renegotiate security parameters with the client. This should only be called in case of a server. - This message informs the peer that we want to renegotiate parameters (perform a handshake). - If this function succeeds (returns 0), you must call the - gnutls_handshake()function in order to negotiate the new parameters.- Since TLS is full duplex some application data might have been sent during peer’s processing of this message. In that case one should call - gnutls_record_recv()until GNUTLS_E_REHANDSHAKE is returned to clear any pending data. Care must be taken if rehandshake is mandatory to terminate if it does not start after some threshold.- If the client does not wish to renegotiate parameters he should reply with an alert message, thus the return code will be - GNUTLS_E_WARNING_ALERT_RECEIVEDand the alert will be- GNUTLS_A_NO_RENEGOTIATION. A client may also choose to ignore this message.- Returns: - GNUTLS_E_SUCCESSon success, otherwise a negative error code.
gnutls_safe_renegotiation_status
- Function: int gnutls_safe_renegotiation_status (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- Can be used to check whether safe renegotiation is being used in the current session. - Returns: 0 when safe renegotiation is not used and non (0) when safe renegotiation is used. - Since: 2.10.0 
gnutls_sec_param_get_name
- Function: const char * gnutls_sec_param_get_name (gnutls_sec_param_t param)
- param: is a security parameter - Convert a - gnutls_sec_param_tvalue to a string.- Returns: a pointer to a string that contains the name of the specified security level, or - NULL.- Since: 2.12.0 
gnutls_sec_param_to_pk_bits
- Function: unsigned int gnutls_sec_param_to_pk_bits (gnutls_pk_algorithm_t algo, gnutls_sec_param_t param)
- algo: is a public key algorithm - param: is a security parameter - When generating private and public key pairs a difficult question is which size of "bits" the modulus will be in RSA and the group size in DSA. The easy answer is 1024, which is also wrong. This function will convert a human understandable security parameter to an appropriate size for the specific algorithm. - Returns: The number of bits, or (0). - Since: 2.12.0 
gnutls_sec_param_to_symmetric_bits
- Function: unsigned int gnutls_sec_param_to_symmetric_bits (gnutls_sec_param_t param)
- param: is a security parameter - This function will return the number of bits that correspond to symmetric cipher strength for the given security parameter. - Returns: The number of bits, or (0). - Since: 3.3.0 
gnutls_server_name_get
- Function: int gnutls_server_name_get (gnutls_session_t session, void * data, size_t * data_length, unsigned int * type, unsigned int indx)
- session: is a - gnutls_session_tstructure.- data: will hold the data - data_length: will hold the data length. Must hold the maximum size of data. - type: will hold the server name indicator type - indx: is the index of the server_name - This function will allow you to get the name indication (if any), a client has sent. The name indication may be any of the enumeration gnutls_server_name_type_t. - If - typeis GNUTLS_NAME_DNS, then this function is to be used by servers that support virtual hosting, and the data will be a null terminated UTF-8 string.- If - datahas not enough size to hold the server name GNUTLS_E_SHORT_MEMORY_BUFFER is returned, and- data_lengthwill hold the required size.- indexis used to retrieve more than one server names (if sent by the client). The first server name has an index of 0, the second 1 and so on. If no name with the given index exists GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE is returned.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.
gnutls_server_name_set
- Function: int gnutls_server_name_set (gnutls_session_t session, gnutls_server_name_type_t type, const void * name, size_t name_length)
- session: is a - gnutls_session_tstructure.- type: specifies the indicator type - name: is a string that contains the server name. - name_length: holds the length of name - This function is to be used by clients that want to inform (via a TLS extension mechanism) the server of the name they connected to. This should be used by clients that connect to servers that do virtual hosting. - The value of - namedepends on the- typetype. In case of- GNUTLS_NAME_DNS, an ASCII (0)-terminated domain name string, without the trailing dot, is expected. IPv4 or IPv6 addresses are not permitted.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.
gnutls_session_channel_binding
- Function: int gnutls_session_channel_binding (gnutls_session_t session, gnutls_channel_binding_t cbtype, gnutls_datum_t * cb)
- session: is a - gnutls_session_tstructure.- cbtype: an - gnutls_channel_binding_tenumeration type- cb: output buffer array with data - Extract given channel binding data of the - cbtype(e.g.,- GNUTLS_CB_TLS_UNIQUE) type.- Returns: - GNUTLS_E_SUCCESSon success,- GNUTLS_E_UNIMPLEMENTED_FEATUREif the- cbtypeis unsupported,- GNUTLS_E_CHANNEL_BINDING_NOT_AVAILABLEif the data is not currently available, or an error code.- Since: 2.12.0 
gnutls_session_enable_compatibility_mode
- Function: void gnutls_session_enable_compatibility_mode (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- This function can be used to disable certain (security) features in TLS in order to maintain maximum compatibility with buggy clients. Because several trade-offs with security are enabled, if required they will be reported through the audit subsystem. - Normally only servers that require maximum compatibility with everything out there, need to call this function. - Note that this function must be called after any call to gnutls_priority functions. 
gnutls_session_force_valid
- Function: void gnutls_session_force_valid (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- Clears the invalid flag in a session. That means that sessions were corrupt or invalid data were received can be re-used. Use only when debugging or experimenting with the TLS protocol. Should not be used in typical applications. 
gnutls_session_get_data
- Function: int gnutls_session_get_data (gnutls_session_t session, void * session_data, size_t * session_data_size)
- session: is a - gnutls_session_tstructure.- session_data: is a pointer to space to hold the session. - session_data_size: is the session_data’s size, or it will be set by the function. - Returns all session parameters needed to be stored to support resumption. The client should call this, and store the returned session data. A session may be resumed later by calling - gnutls_session_set_data(). This function must be called after a successful handshake.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise an error code is returned.
gnutls_session_get_data2
- Function: int gnutls_session_get_data2 (gnutls_session_t session, gnutls_datum_t * data)
- session: is a - gnutls_session_tstructure.- data: is a pointer to a datum that will hold the session. - Returns all session parameters needed to be stored to support resumption. The client should call this, and store the returned session data. A session may be resumed later by calling - gnutls_session_set_data(). This function must be called after a successful handshake. The returned- dataare allocated and must be released using- gnutls_free().- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise an error code is returned.
gnutls_session_get_desc
- Function: char * gnutls_session_get_desc (gnutls_session_t session)
- session: is a gnutls session - This function returns a string describing the current session. The string is null terminated and allocated using - gnutls_malloc().- Returns: a description of the protocols and algorithms in the current session. - Since: 3.1.10 
gnutls_session_get_id
- Function: int gnutls_session_get_id (gnutls_session_t session, void * session_id, size_t * session_id_size)
- session: is a - gnutls_session_tstructure.- session_id: is a pointer to space to hold the session id. - session_id_size: initially should contain the maximum - session_idsize and will be updated.- Returns the current session ID. This can be used if you want to check if the next session you tried to resume was actually resumed. That is because resumed sessions share the same session ID with the original session. - The session ID is selected by the server, that identify the current session. In TLS 1.0 and SSL 3.0 session id is always less than 32 bytes. - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise an error code is returned.
gnutls_session_get_id2
- Function: int gnutls_session_get_id2 (gnutls_session_t session, gnutls_datum_t * session_id)
- session: is a - gnutls_session_tstructure.- session_id: will point to the session ID. - Returns the current session ID. The returned data should be treated as constant. - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise an error code is returned.- Since: 3.1.4 
gnutls_session_get_ptr
- Function: void * gnutls_session_get_ptr (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- Get user pointer for session. Useful in callbacks. This is the pointer set with - gnutls_session_set_ptr().- Returns: the user given pointer from the session structure, or - NULLif it was never set.
gnutls_session_get_random
- Function: void gnutls_session_get_random (gnutls_session_t session, gnutls_datum_t * client, gnutls_datum_t * server)
- session: is a - gnutls_session_tstructure.- client: the client part of the random - server: the server part of the random - This function returns pointers to the client and server random fields used in the TLS handshake. The pointers are not to be modified or deallocated. - If a client random value has not yet been established, the output will be garbage. - Since: 3.0 
gnutls_session_is_resumed
- Function: int gnutls_session_is_resumed (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- Check whether session is resumed or not. - Returns: non zero if this session is resumed, or a zero if this is a new session. 
gnutls_session_resumption_requested
- Function: int gnutls_session_resumption_requested (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- Check whether the client has asked for session resumption. This function is valid only on server side. - Returns: non zero if session resumption was asked, or a zero if not. 
gnutls_session_set_data
- Function: int gnutls_session_set_data (gnutls_session_t session, const void * session_data, size_t session_data_size)
- session: is a - gnutls_session_tstructure.- session_data: is a pointer to space to hold the session. - session_data_size: is the session’s size - Sets all session parameters, in order to resume a previously established session. The session data given must be the one returned by - gnutls_session_get_data(). This function should be called before- gnutls_handshake().- Keep in mind that session resuming is advisory. The server may choose not to resume the session, thus a full handshake will be performed. - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise an error code is returned.
gnutls_session_set_id
- Function: int gnutls_session_set_id (gnutls_session_t session, const gnutls_datum_t * sid)
- session: is a - gnutls_session_tstructure.- sid: the session identifier - This function sets the session ID to be used in a client hello. This is a function intended for exceptional uses. Do not use this function unless you are implementing a custom protocol. - To set session resumption parameters use - gnutls_session_set_data()instead.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise an error code is returned.
gnutls_session_set_premaster
- Function: int gnutls_session_set_premaster (gnutls_session_t session, unsigned int entity, gnutls_protocol_t version, gnutls_kx_algorithm_t kx, gnutls_cipher_algorithm_t cipher, gnutls_mac_algorithm_t mac, gnutls_compression_method_t comp, const gnutls_datum_t * master, const gnutls_datum_t * session_id)
- session: is a - gnutls_session_tstructure.- entity: GNUTLS_SERVER or GNUTLS_CLIENT - version: the TLS protocol version - kx: the key exchange method - cipher: the cipher - mac: the MAC algorithm - comp: the compression method - master: the master key to use - session_id: the session identifier - This function sets the premaster secret in a session. This is a function intended for exceptional uses. Do not use this function unless you are implementing a legacy protocol. Use - gnutls_session_set_data()instead.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise an error code is returned.
gnutls_session_set_ptr
- Function: void gnutls_session_set_ptr (gnutls_session_t session, void * ptr)
- session: is a - gnutls_session_tstructure.- ptr: is the user pointer - This function will set (associate) the user given pointer - ptrto the session structure. This pointer can be accessed with- gnutls_session_get_ptr().
gnutls_session_ticket_enable_client
- Function: int gnutls_session_ticket_enable_client (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- Request that the client should attempt session resumption using SessionTicket. - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, or an error code.- Since: 2.10.0 
gnutls_session_ticket_enable_server
- Function: int gnutls_session_ticket_enable_server (gnutls_session_t session, const gnutls_datum_t * key)
- session: is a - gnutls_session_tstructure.- key: key to encrypt session parameters. - Request that the server should attempt session resumption using SessionTicket. - keymust be initialized with- gnutls_session_ticket_key_generate().- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, or an error code.- Since: 2.10.0 
gnutls_session_ticket_key_generate
- Function: int gnutls_session_ticket_key_generate (gnutls_datum_t * key)
- key: is a pointer to a - gnutls_datum_twhich will contain a newly created key.- Generate a random key to encrypt security parameters within SessionTicket. - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, or an error code.- Since: 2.10.0 
gnutls_set_default_priority
- Function: int gnutls_set_default_priority (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- Sets some default priority on the ciphers, key exchange methods, macs and compression methods. - This typically sets a default priority that is considered sufficiently secure to establish encrypted sessions. - This function is kept around for backwards compatibility, but because of its wide use it is still fully supported. If you wish to allow users to provide a string that specify which ciphers to use (which is recommended), you should use - gnutls_priority_set_direct()or- gnutls_priority_set()instead.- Returns: - GNUTLS_E_SUCCESSon success, or an error code.
gnutls_sign_algorithm_get
- Function: int gnutls_sign_algorithm_get (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- Returns the signature algorithm that is (or will be) used in this session by the server to sign data. - Returns: The sign algorithm or - GNUTLS_SIGN_UNKNOWN.- Since: 3.1.1 
gnutls_sign_algorithm_get_client
- Function: int gnutls_sign_algorithm_get_client (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- Returns the signature algorithm that is (or will be) used in this session by the client to sign data. - Returns: The sign algorithm or - GNUTLS_SIGN_UNKNOWN.- Since: 3.1.11 
gnutls_sign_algorithm_get_requested
- Function: int gnutls_sign_algorithm_get_requested (gnutls_session_t session, size_t indx, gnutls_sign_algorithm_t * algo)
- session: is a - gnutls_session_tstructure.- indx: is an index of the signature algorithm to return - algo: the returned certificate type will be stored there - Returns the signature algorithm specified by index that was requested by the peer. If the specified index has no data available this function returns - GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE. If the negotiated TLS version does not support signature algorithms then- GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLEwill be returned even for the first index. The first index is 0.- This function is useful in the certificate callback functions to assist in selecting the correct certificate. - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise an error code is returned.- Since: 2.10.0 
gnutls_sign_get_hash_algorithm
- Function: gnutls_digest_algorithm_t gnutls_sign_get_hash_algorithm (gnutls_sign_algorithm_t sign)
- sign: is a signature algorithm - This function returns the digest algorithm corresponding to the given signature algorithms. - Since: 3.1.1 - Returns: return a - gnutls_digest_algorithm_tvalue, or- GNUTLS_DIG_UNKNOWNon error.
gnutls_sign_get_id
- Function: gnutls_sign_algorithm_t gnutls_sign_get_id (const char * name)
- name: is a sign algorithm name - The names are compared in a case insensitive way. - Returns: return a - gnutls_sign_algorithm_tvalue corresponding to the specified algorithm, or- GNUTLS_SIGN_UNKNOWNon error.
gnutls_sign_get_name
- Function: const char * gnutls_sign_get_name (gnutls_sign_algorithm_t algorithm)
- algorithm: is a sign algorithm - Convert a - gnutls_sign_algorithm_tvalue to a string.- Returns: a string that contains the name of the specified sign algorithm, or - NULL.
gnutls_sign_get_pk_algorithm
- Function: gnutls_pk_algorithm_t gnutls_sign_get_pk_algorithm (gnutls_sign_algorithm_t sign)
- sign: is a signature algorithm - This function returns the public key algorithm corresponding to the given signature algorithms. - Since: 3.1.1 - Returns: return a - gnutls_pk_algorithm_tvalue, or- GNUTLS_PK_UNKNOWNon error.
gnutls_sign_is_secure
- Function: int gnutls_sign_is_secure (gnutls_sign_algorithm_t algorithm)
- algorithm: is a sign algorithm - Returns: Non-zero if the provided signature algorithm is considered to be secure. 
gnutls_sign_list
- Function: const gnutls_sign_algorithm_t * gnutls_sign_list ( void)
- 
Get a list of supported public key signature algorithms. Returns: a (0)-terminated list of gnutls_sign_algorithm_tintegers indicating the available ciphers.
gnutls_srp_allocate_client_credentials
- Function: int gnutls_srp_allocate_client_credentials (gnutls_srp_client_credentials_t * sc)
- sc: is a pointer to a - gnutls_srp_server_credentials_tstructure.- This structure is complex enough to manipulate directly thus this helper function is provided in order to allocate it. - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, or an error code.
gnutls_srp_allocate_server_credentials
- Function: int gnutls_srp_allocate_server_credentials (gnutls_srp_server_credentials_t * sc)
- sc: is a pointer to a - gnutls_srp_server_credentials_tstructure.- This structure is complex enough to manipulate directly thus this helper function is provided in order to allocate it. - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, or an error code.
gnutls_srp_base64_decode
- Function: int gnutls_srp_base64_decode (const gnutls_datum_t * b64_data, char * result, size_t * result_size)
- b64_data: contain the encoded data - result: the place where decoded data will be copied - result_size: holds the size of the result - This function will decode the given encoded data, using the base64 encoding found in libsrp. - Note that - b64_datashould be null terminated.- Warning! This base64 encoding is not the "standard" encoding, so do not use it for non-SRP purposes. - Returns: - GNUTLS_E_SHORT_MEMORY_BUFFERif the buffer given is not long enough, or 0 on success.
gnutls_srp_base64_decode_alloc
- Function: int gnutls_srp_base64_decode_alloc (const gnutls_datum_t * b64_data, gnutls_datum_t * result)
- b64_data: contains the encoded data - result: the place where decoded data lie - This function will decode the given encoded data. The decoded data will be allocated, and stored into result. It will decode using the base64 algorithm as used in libsrp. - You should use - gnutls_free()to free the returned data.- Warning! This base64 encoding is not the "standard" encoding, so do not use it for non-SRP purposes. - Returns: 0 on success, or an error code. 
gnutls_srp_base64_encode
- Function: int gnutls_srp_base64_encode (const gnutls_datum_t * data, char * result, size_t * result_size)
- data: contain the raw data - result: the place where base64 data will be copied - result_size: holds the size of the result - This function will convert the given data to printable data, using the base64 encoding, as used in the libsrp. This is the encoding used in SRP password files. If the provided buffer is not long enough GNUTLS_E_SHORT_MEMORY_BUFFER is returned. - Warning! This base64 encoding is not the "standard" encoding, so do not use it for non-SRP purposes. - Returns: - GNUTLS_E_SHORT_MEMORY_BUFFERif the buffer given is not long enough, or 0 on success.
gnutls_srp_base64_encode_alloc
- Function: int gnutls_srp_base64_encode_alloc (const gnutls_datum_t * data, gnutls_datum_t * result)
- data: contains the raw data - result: will hold the newly allocated encoded data - This function will convert the given data to printable data, using the base64 encoding. This is the encoding used in SRP password files. This function will allocate the required memory to hold the encoded data. - You should use - gnutls_free()to free the returned data.- Warning! This base64 encoding is not the "standard" encoding, so do not use it for non-SRP purposes. - Returns: 0 on success, or an error code. 
gnutls_srp_free_client_credentials
- Function: void gnutls_srp_free_client_credentials (gnutls_srp_client_credentials_t sc)
- sc: is a - gnutls_srp_client_credentials_tstructure.- This structure is complex enough to manipulate directly thus this helper function is provided in order to free (deallocate) it. 
gnutls_srp_free_server_credentials
- Function: void gnutls_srp_free_server_credentials (gnutls_srp_server_credentials_t sc)
- sc: is a - gnutls_srp_server_credentials_tstructure.- This structure is complex enough to manipulate directly thus this helper function is provided in order to free (deallocate) it. 
gnutls_srp_server_get_username
- Function: const char * gnutls_srp_server_get_username (gnutls_session_t session)
- session: is a gnutls session - This function will return the username of the peer. This should only be called in case of SRP authentication and in case of a server. Returns NULL in case of an error. - Returns: SRP username of the peer, or NULL in case of error. 
gnutls_srp_set_client_credentials
- Function: int gnutls_srp_set_client_credentials (gnutls_srp_client_credentials_t res, const char * username, const char * password)
- res: is a - gnutls_srp_client_credentials_tstructure.- username: is the user’s userid - password: is the user’s password - This function sets the username and password, in a - gnutls_srp_client_credentials_tstructure. Those will be used in SRP authentication.- usernameand- passwordshould be ASCII strings or UTF-8 strings prepared using the "SASLprep" profile of "stringprep".- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, or an error code.
gnutls_srp_set_client_credentials_function
- Function: void gnutls_srp_set_client_credentials_function (gnutls_srp_client_credentials_t cred, gnutls_srp_client_credentials_function * func)
- cred: is a - gnutls_srp_server_credentials_tstructure.- func: is the callback function - This function can be used to set a callback to retrieve the username and password for client SRP authentication. The callback’s function form is: - int (*callback)(gnutls_session_t, char** username, char**password); - The - usernameand- passwordmust be allocated using- gnutls_malloc().- usernameand- passwordshould be ASCII strings or UTF-8 strings prepared using the "SASLprep" profile of "stringprep".- The callback function will be called once per handshake before the initial hello message is sent. - The callback should not return a negative error code the second time called, since the handshake procedure will be aborted. - The callback function should return 0 on success. -1 indicates an error. 
gnutls_srp_set_prime_bits
- Function: void gnutls_srp_set_prime_bits (gnutls_session_t session, unsigned int bits)
- session: is a - gnutls_session_tstructure.- bits: is the number of bits - This function sets the minimum accepted number of bits, for use in an SRP key exchange. If zero, the default 2048 bits will be used. - In the client side it sets the minimum accepted number of bits. If a server sends a prime with less bits than that - GNUTLS_E_RECEIVED_ILLEGAL_PARAMETERwill be returned by the handshake.- This function has no effect in server side. - Since: 2.6.0 
gnutls_srp_set_server_credentials_file
- Function: int gnutls_srp_set_server_credentials_file (gnutls_srp_server_credentials_t res, const char * password_file, const char * password_conf_file)
- res: is a - gnutls_srp_server_credentials_tstructure.- password_file: is the SRP password file (tpasswd) - password_conf_file: is the SRP password conf file (tpasswd.conf) - This function sets the password files, in a - gnutls_srp_server_credentials_tstructure. Those password files hold usernames and verifiers and will be used for SRP authentication.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, or an error code.
gnutls_srp_set_server_credentials_function
- Function: void gnutls_srp_set_server_credentials_function (gnutls_srp_server_credentials_t cred, gnutls_srp_server_credentials_function * func)
- cred: is a - gnutls_srp_server_credentials_tstructure.- func: is the callback function - This function can be used to set a callback to retrieve the user’s SRP credentials. The callback’s function form is: - int (*callback)(gnutls_session_t, const char* username, gnutls_datum_t* salt, gnutls_datum_t *verifier, gnutls_datum_t* generator, gnutls_datum_t* prime); - usernamecontains the actual username. The- salt,- verifier,- generatorand- primemust be filled in using the- gnutls_malloc(). For convenience- primeand- generatormay also be one of the static parameters defined in gnutls.h.- In order to prevent attackers from guessing valid usernames, if a user does not exist, g and n values should be filled in using a random user’s parameters. In that case the callback must return the special value (1). See - gnutls_srp_set_server_fake_salt_seedtoo. If this is not required for your application, return a negative number from the callback to abort the handshake.- The callback function will only be called once per handshake. The callback function should return 0 on success, while -1 indicates an error. 
gnutls_srp_set_server_fake_salt_seed
- Function: void gnutls_srp_set_server_fake_salt_seed (gnutls_srp_server_credentials_t cred, const gnutls_datum_t * seed, unsigned int salt_length)
- cred: is a - gnutls_srp_server_credentials_tstructure- seed: is the seed data, only needs to be valid until the function returns; size of the seed must be greater than zero - salt_length: is the length of the generated fake salts - This function sets the seed that is used to generate salts for invalid (non-existent) usernames. - In order to prevent attackers from guessing valid usernames, when a user does not exist gnutls generates a salt and a verifier and proceeds with the protocol as usual. The authentication will ultimately fail, but the client cannot tell whether the username is valid (exists) or invalid. - If an attacker learns the seed, given a salt (which is part of the handshake) which was generated when the seed was in use, it can tell whether or not the authentication failed because of an unknown username. This seed cannot be used to reveal application data or passwords. - salt_lengthshould represent the salt length your application uses. Generating fake salts longer than 20 bytes is not supported.- By default the seed is a random value, different each time a - gnutls_srp_server_credentials_tis allocated and fake salts are 16 bytes long.- Since: 3.3.0 
gnutls_srp_verifier
- Function: int gnutls_srp_verifier (const char * username, const char * password, const gnutls_datum_t * salt, const gnutls_datum_t * generator, const gnutls_datum_t * prime, gnutls_datum_t * res)
- username: is the user’s name - password: is the user’s password - salt: should be some randomly generated bytes - generator: is the generator of the group - prime: is the group’s prime - res: where the verifier will be stored. - This function will create an SRP verifier, as specified in RFC2945. The - primeand- generatorshould be one of the static parameters defined in gnutls/gnutls.h or may be generated.- The verifier will be allocated with - gnutls_malloc() and will be stored in- resusing binary format.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, or an error code.
gnutls_srtp_get_keys
- Function: int gnutls_srtp_get_keys (gnutls_session_t session, void * key_material, unsigned int key_material_size, gnutls_datum_t * client_key, gnutls_datum_t * client_salt, gnutls_datum_t * server_key, gnutls_datum_t * server_salt)
- session: is a - gnutls_session_tstructure.- key_material: Space to hold the generated key material - key_material_size: The maximum size of the key material - client_key: The master client write key, pointing inside the key material - client_salt: The master client write salt, pointing inside the key material - server_key: The master server write key, pointing inside the key material - server_salt: The master server write salt, pointing inside the key material - This is a helper function to generate the keying material for SRTP. It requires the space of the key material to be pre-allocated (should be at least 2x the maximum key size and salt size). The - client_key,- client_salt,- server_keyand- server_saltare convenience datums that point inside the key material. They may be- NULL.- Returns: On success the size of the key material is returned, otherwise, - GNUTLS_E_SHORT_MEMORY_BUFFERif the buffer given is not sufficient, or a negative error code.- Since 3.1.4 
gnutls_srtp_get_mki
- Function: int gnutls_srtp_get_mki (gnutls_session_t session, gnutls_datum_t * mki)
- session: is a - gnutls_session_tstructure.- mki: will hold the MKI - This function exports the negotiated Master Key Identifier, received by the peer if any. The returned value in - mkishould be treated as constant and valid only during the session’s lifetime.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.- Since 3.1.4 
gnutls_srtp_get_profile_id
- Function: int gnutls_srtp_get_profile_id (const char * name, gnutls_srtp_profile_t * profile)
- name: The name of the profile to look up - profile: Will hold the profile id - This function allows you to look up a profile based on a string. - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.- Since 3.1.4 
gnutls_srtp_get_profile_name
- Function: const char * gnutls_srtp_get_profile_name (gnutls_srtp_profile_t profile)
- profile: The profile to look up a string for - This function allows you to get the corresponding name for a SRTP protection profile. - Returns: On success, the name of a SRTP profile as a string, otherwise NULL. - Since 3.1.4 
gnutls_srtp_get_selected_profile
- Function: int gnutls_srtp_get_selected_profile (gnutls_session_t session, gnutls_srtp_profile_t * profile)
- session: is a - gnutls_session_tstructure.- profile: will hold the profile - This function allows you to get the negotiated SRTP profile. - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.- Since 3.1.4 
gnutls_srtp_set_mki
- Function: int gnutls_srtp_set_mki (gnutls_session_t session, const gnutls_datum_t * mki)
- session: is a - gnutls_session_tstructure.- mki: holds the MKI - This function sets the Master Key Identifier, to be used by this session (if any). - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.- Since 3.1.4 
gnutls_srtp_set_profile
- Function: int gnutls_srtp_set_profile (gnutls_session_t session, gnutls_srtp_profile_t profile)
- session: is a - gnutls_session_tstructure.- profile: is the profile id to add. - This function is to be used by both clients and servers, to declare what SRTP profiles they support, to negotiate with the peer. - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error code is returned.- Since 3.1.4 
gnutls_srtp_set_profile_direct
- Function: int gnutls_srtp_set_profile_direct (gnutls_session_t session, const char * profiles, const char ** err_pos)
- session: is a - gnutls_session_tstructure.- profiles: is a string that contains the supported SRTP profiles, separated by colons. - err_pos: In case of an error this will have the position in the string the error occured, may be NULL. - This function is to be used by both clients and servers, to declare what SRTP profiles they support, to negotiate with the peer. - Returns: On syntax error - GNUTLS_E_INVALID_REQUESTis returned,- GNUTLS_E_SUCCESSon success, or an error code.- Since 3.1.4 
gnutls_store_commitment
- Function: int gnutls_store_commitment (const char * db_name, gnutls_tdb_t tdb, const char * host, const char * service, gnutls_digest_algorithm_t hash_algo, const gnutls_datum_t * hash, time_t expiration, unsigned int flags)
- db_name: A file specifying the stored keys (use NULL for the default) - tdb: A storage structure or NULL to use the default - host: The peer’s name - service: non-NULL if this key is specific to a service (e.g. http) - hash_algo: The hash algorithm type - hash: The raw hash - expiration: The expiration time (use 0 to disable expiration) - flags: should be 0. - This function will store the provided hash commitment to the list of stored public keys. The key with the given hash will be considered valid until the provided expiration time. - The - storevariable if non-null specifies a custom backend for the storage of entries. If it is NULL then the default file backend will be used.- Note that this function is not thread safe with the default backend. - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error value.- Since: 3.0 
gnutls_store_pubkey
- Function: int gnutls_store_pubkey (const char * db_name, gnutls_tdb_t tdb, const char * host, const char * service, gnutls_certificate_type_t cert_type, const gnutls_datum_t * cert, time_t expiration, unsigned int flags)
- db_name: A file specifying the stored keys (use NULL for the default) - tdb: A storage structure or NULL to use the default - host: The peer’s name - service: non-NULL if this key is specific to a service (e.g. http) - cert_type: The type of the certificate - cert: The data of the certificate - expiration: The expiration time (use 0 to disable expiration) - flags: should be 0. - This function will store the provided (raw or DER-encoded) certificate to the list of stored public keys. The key will be considered valid until the provided expiration time. - The - storevariable if non-null specifies a custom backend for the storage of entries. If it is NULL then the default file backend will be used.- Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error value.- Since: 3.0.13 
gnutls_strerror
- Function: const char * gnutls_strerror (int error)
- error: is a GnuTLS error code, a negative error code - This function is similar to strerror. The difference is that it accepts an error number returned by a gnutls function; In case of an unknown error a descriptive string is sent instead of - NULL.- Error codes are always a negative error code. - Returns: A string explaining the GnuTLS error message. 
gnutls_strerror_name
- Function: const char * gnutls_strerror_name (int error)
- error: is an error returned by a gnutls function. - Return the GnuTLS error code define as a string. For example, gnutls_strerror_name (GNUTLS_E_DH_PRIME_UNACCEPTABLE) will return the string "GNUTLS_E_DH_PRIME_UNACCEPTABLE". - Returns: A string corresponding to the symbol name of the error code. - Since: 2.6.0 
gnutls_supplemental_get_name
- Function: const char * gnutls_supplemental_get_name (gnutls_supplemental_data_format_type_t type)
- type: is a supplemental data format type - Convert a - gnutls_supplemental_data_format_type_tvalue to a string.- Returns: a string that contains the name of the specified supplemental data format type, or - NULLfor unknown types.
gnutls_tdb_deinit
- Function: void gnutls_tdb_deinit (gnutls_tdb_t tdb)
- tdb: The structure to be deinitialized - This function will deinitialize a public key trust storage structure. 
gnutls_tdb_init
- Function: int gnutls_tdb_init (gnutls_tdb_t * tdb)
- tdb: The structure to be initialized - This function will initialize a public key trust storage structure. - Returns: On success, - GNUTLS_E_SUCCESS(0) is returned, otherwise a negative error value.
gnutls_tdb_set_store_commitment_func
- Function: void gnutls_tdb_set_store_commitment_func (gnutls_tdb_t tdb, gnutls_tdb_store_commitment_func cstore)
- tdb: The trust storage - cstore: The commitment storage function - This function will associate a commitment (hash) storage function with the trust storage structure. The function is of the following form. - gnutls_tdb_store_commitment_func(const char* db_name, const char* host, const char* service, time_t expiration, gnutls_digest_algorithm_t, const gnutls_datum_t* hash); 
gnutls_tdb_set_store_func
- Function: void gnutls_tdb_set_store_func (gnutls_tdb_t tdb, gnutls_tdb_store_func store)
- tdb: The trust storage - store: The storage function - This function will associate a storage function with the trust storage structure. The function is of the following form. - gnutls_tdb_store_func(const char* db_name, const char* host, const char* service, time_t expiration, const gnutls_datum_t* pubkey); 
gnutls_tdb_set_verify_func
- Function: void gnutls_tdb_set_verify_func (gnutls_tdb_t tdb, gnutls_tdb_verify_func verify)
- tdb: The trust storage - verify: The verification function - This function will associate a retrieval function with the trust storage structure. The function is of the following form. - gnutls_tdb_verify_func(const char* db_name, const char* host, const char* service, const gnutls_datum_t* pubkey); 
gnutls_transport_get_int
- Function: int gnutls_transport_get_int (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- Used to get the first argument of the transport function (like PUSH and PULL). This must have been set using - gnutls_transport_set_int().- Returns: The first argument of the transport function. - Since: 3.1.9 
gnutls_transport_get_int2
- Function: void gnutls_transport_get_int2 (gnutls_session_t session, int * recv_int, int * send_int)
- session: is a - gnutls_session_tstructure.- recv_int: will hold the value for the pull function - send_int: will hold the value for the push function - Used to get the arguments of the transport functions (like PUSH and PULL). These should have been set using - gnutls_transport_set_int2().- Since: 3.1.9 
gnutls_transport_get_ptr
- Function: gnutls_transport_ptr_t gnutls_transport_get_ptr (gnutls_session_t session)
- session: is a - gnutls_session_tstructure.- Used to get the first argument of the transport function (like PUSH and PULL). This must have been set using - gnutls_transport_set_ptr().- Returns: The first argument of the transport function. 
gnutls_transport_get_ptr2
- Function: void gnutls_transport_get_ptr2 (gnutls_session_t session, gnutls_transport_ptr_t * recv_ptr, gnutls_transport_ptr_t * send_ptr)
- session: is a - gnutls_session_tstructure.- recv_ptr: will hold the value for the pull function - send_ptr: will hold the value for the push function - Used to get the arguments of the transport functions (like PUSH and PULL). These should have been set using - gnutls_transport_set_ptr2().
gnutls_transport_set_errno
- Function: void gnutls_transport_set_errno (gnutls_session_t session, int err)
- session: is a - gnutls_session_tstructure.- err: error value to store in session-specific errno variable. - Store - errin the session-specific errno variable. Useful values for- erris EAGAIN and EINTR, other values are treated will be treated as real errors in the push/pull function.- This function is useful in replacement push and pull functions set by - gnutls_transport_set_push_function()and- gnutls_transport_set_pull_function()under Windows, where the replacements may not have access to the same- errnovariable that is used by GnuTLS (e.g., the application is linked to msvcr71.dll and gnutls is linked to msvcrt.dll).
gnutls_transport_set_errno_function
- Function: void gnutls_transport_set_errno_function (gnutls_session_t session, gnutls_errno_func errno_func)
- session: is a - gnutls_session_tstructure.- errno_func: a callback function similar to - write()- This is the function where you set a function to retrieve errno after a failed push or pull operation. - errno_funcis of the form, int (*gnutls_errno_func)(gnutls_transport_ptr_t); and should return the errno.- Since: 2.12.0 
gnutls_transport_set_int
- Function: void gnutls_transport_set_int (gnutls_session_t session, int i)
- session: is a - gnutls_session_tstructure.- i: is the value. - Used to set the first argument of the transport function (for push and pull callbacks) for berkeley style sockets. - Since: 3.1.9 
gnutls_transport_set_int2
- Function: void gnutls_transport_set_int2 (gnutls_session_t session, int recv_int, int send_int)
- session: is a - gnutls_session_tstructure.- recv_int: is the value for the pull function - send_int: is the value for the push function - Used to set the first argument of the transport function (for push and pull callbacks), when using the berkeley style sockets. With this function you can set two different pointers for receiving and sending. - Since: 3.1.9 
gnutls_transport_set_ptr
- Function: void gnutls_transport_set_ptr (gnutls_session_t session, gnutls_transport_ptr_t ptr)
- session: is a - gnutls_session_tstructure.- ptr: is the value. - Used to set the first argument of the transport function (for push and pull callbacks). In berkeley style sockets this function will set the connection descriptor. 
gnutls_transport_set_ptr2
- Function: void gnutls_transport_set_ptr2 (gnutls_session_t session, gnutls_transport_ptr_t recv_ptr, gnutls_transport_ptr_t send_ptr)
- session: is a - gnutls_session_tstructure.- recv_ptr: is the value for the pull function - send_ptr: is the value for the push function - Used to set the first argument of the transport function (for push and pull callbacks). In berkeley style sockets this function will set the connection descriptor. With this function you can use two different pointers for receiving and sending. 
gnutls_transport_set_pull_function
- Function: void gnutls_transport_set_pull_function (gnutls_session_t session, gnutls_pull_func pull_func)
- session: is a - gnutls_session_tstructure.- pull_func: a callback function similar to - read()- This is the function where you set a function for gnutls to receive data. Normally, if you use berkeley style sockets, do not need to use this function since the default recv(2) will probably be ok. The callback should return 0 on connection termination, a positive number indicating the number of bytes received, and -1 on error. - gnutls_pull_funcis of the form, ssize_t (*gnutls_pull_func)(gnutls_transport_ptr_t, void*, size_t);
gnutls_transport_set_pull_timeout_function
- Function: void gnutls_transport_set_pull_timeout_function (gnutls_session_t session, gnutls_pull_timeout_func func)
- session: is a - gnutls_session_tstructure.- func: a callback function - This is the function where you set a function for gnutls to know whether data are ready to be received. It should wait for data a given time frame in milliseconds. The callback should return 0 on timeout, a positive number if data can be received, and -1 on error. You’ll need to override this function if - select()is not suitable for the provided transport calls.- As with - select(), if the timeout value is zero the callback should return zero if no data are immediately available.- gnutls_pull_timeout_funcis of the form, int (*gnutls_pull_timeout_func)(gnutls_transport_ptr_t, unsigned int ms);- Since: 3.0 
gnutls_transport_set_push_function
- Function: void gnutls_transport_set_push_function (gnutls_session_t session, gnutls_push_func push_func)
- session: is a - gnutls_session_tstructure.- push_func: a callback function similar to - write()- This is the function where you set a push function for gnutls to use in order to send data. If you are going to use berkeley style sockets, you do not need to use this function since the default send(2) will probably be ok. Otherwise you should specify this function for gnutls to be able to send data. The callback should return a positive number indicating the bytes sent, and -1 on error. - push_funcis of the form, ssize_t (*gnutls_push_func)(gnutls_transport_ptr_t, const void*, size_t);
gnutls_transport_set_vec_push_function
- Function: void gnutls_transport_set_vec_push_function (gnutls_session_t session, gnutls_vec_push_func vec_func)
- session: is a - gnutls_session_tstructure.- vec_func: a callback function similar to - writev()- Using this function you can override the default writev(2) function for gnutls to send data. Setting this callback instead of - gnutls_transport_set_push_function()is recommended since it introduces less overhead in the TLS handshake process.- vec_funcis of the form, ssize_t (*gnutls_vec_push_func) (gnutls_transport_ptr_t, const giovec_t * iov, int iovcnt);- Since: 2.12.0 
gnutls_url_is_supported
- Function: int gnutls_url_is_supported (const char * url)
- url: A PKCS 11 url - Check whether url is supported. Depending on the system libraries GnuTLS may support pkcs11 or tpmkey URLs. - Returns: return non-zero if the given URL is supported, and zero if it is not known. - Since: 3.1.0 
gnutls_verify_stored_pubkey
- Function: int gnutls_verify_stored_pubkey (const char * db_name, gnutls_tdb_t tdb, const char * host, const char * service, gnutls_certificate_type_t cert_type, const gnutls_datum_t * cert, unsigned int flags)
- db_name: A file specifying the stored keys (use NULL for the default) - tdb: A storage structure or NULL to use the default - host: The peer’s name - service: non-NULL if this key is specific to a service (e.g. http) - cert_type: The type of the certificate - cert: The raw (der) data of the certificate - flags: should be 0. - This function will try to verify the provided (raw or DER-encoded) certificate using a list of stored public keys. The - servicefield if non-NULL should be a port number.- The - retrievevariable if non-null specifies a custom backend for the retrieval of entries. If it is NULL then the default file backend will be used. In POSIX-like systems the file backend uses the $HOME/.gnutls/known_hosts file.- Note that if the custom storage backend is provided the retrieval function should return - GNUTLS_E_CERTIFICATE_KEY_MISMATCHif the host/service pair is found but key doesn’t match,- GNUTLS_E_NO_CERTIFICATE_FOUNDif no such host/service with the given key is found, and 0 if it was found. The storage function should return 0 on success.- Returns: If no associated public key is found then - GNUTLS_E_NO_CERTIFICATE_FOUNDwill be returned. If a key is found but does not match- GNUTLS_E_CERTIFICATE_KEY_MISMATCHis returned. On success,- GNUTLS_E_SUCCESS(0) is returned, or a negative error value on other errors.- Since: 3.0.13 
| [ << ] | [ < ] | [ Up ] | [ > ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] | 
 
  This document was generated on May 31, 2014 using texi2html 5.0.
 
 
