catch all is CTYPE-CLI-ALL and CTYPE-SRV-ALL. The type 'X509' is aliased to 'X.509'
for legacy reasons.
+@item Generic @tab
+The keyword GOST is a shortcut for secure GOST algorithms (MACs, ciphers,
+KXes, groups and signatures). For example the following string will enable all
+TLS 1.2 GOST ciphersuites: 'NONE:+VERS-TLS1.2:+GOST'.
+
@end multitable
@caption{The supported algorithm keywords in priority strings.}
@end float
bulk_fn(&(*priority_cache)->_kx,
kx_priority_gost);
}
+ } else if (c_strncasecmp
+ (&broken_list[i][1], "GOST", 4) == 0) {
+ bulk_given_fn(&(*priority_cache)->_supported_ecc,
+ _supported_groups_gost);
+ bulk_fn(&(*priority_cache)->_sign_algo,
+ sign_priority_gost);
+ bulk_fn(&(*priority_cache)->_mac,
+ mac_priority_gost);
+ bulk_fn(&(*priority_cache)->_cipher,
+ cipher_priority_gost);
+ bulk_fn(&(*priority_cache)->_kx,
+ kx_priority_gost);
} else
goto error;
} else if (broken_list[i][0] == '%') {