.\" DO NOT MODIFY THIS FILE! It was generated by gdoc. .TH "gnutls_priority_init" 3 "3.1.11" "gnutls" "gnutls" .SH NAME gnutls_priority_init \- API function .SH SYNOPSIS .B #include .sp .BI "int gnutls_priority_init(gnutls_priority_t * " priority_cache ", const char * " priorities ", const char ** " err_pos ");" .SH ARGUMENTS .IP "gnutls_priority_t * priority_cache" 12 is a \fBgnutls_prioritity_t\fP structure. .IP "const char * priorities" 12 is a string describing priorities .IP "const char ** err_pos" 12 In case of an error this will have the position in the string the error occured .SH "DESCRIPTION" Sets priorities for the ciphers, key exchange methods, macs and compression methods. The \fBpriorities\fP option 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. "PERFORMANCE" means all the "secure" ciphersuites are enabled, limited to 128 bit ciphers and sorted by terms of speed performance. "NORMAL" means all "secure" ciphersuites. 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. 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. .SH "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. "SECURE:\-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:\fBCOMPAT\fP" is the most compatible mode. .SH "RETURNS" On syntax error \fBGNUTLS_E_INVALID_REQUEST\fP is returned, \fBGNUTLS_E_SUCCESS\fP on success, or an error code. .SH "REPORTING BUGS" Report bugs to . .br General guidelines for reporting bugs: http://www.gnu.org/gethelp/ .br GnuTLS home page: http://www.gnu.org/software/gnutls/ .SH COPYRIGHT Copyright \(co 2012 Free Software Foundation, Inc.. .br Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. .SH "SEE ALSO" The full documentation for .B gnutls is maintained as a Texinfo manual. If the .B info and .B gnutls programs are properly installed at your site, the command .IP .B info gnutls .PP should give you access to the complete manual. As an alternative you may obtain the manual from: .IP .B http://www.gnu.org/software/gnutls/manual/ .PP