Lines Matching defs:mode
495 /* For Suite B mode only include P-256, P-384 */
1353 * If Suite B mode use Suite B sigalgs only, ignore any other
1553 /* Allow fallback to SHA1 if not strict mode */
2620 /* Flags which need to be set for a certificate when strict mode not set */
2624 /* Strict mode flags */
2686 * algorithms extension if TLS 1.2 or later and strict mode.
2787 /* In strict mode check rest of chain too */
3357 int SSL_CTX_set_tlsext_max_fragment_length(SSL_CTX *ctx, uint8_t mode)
3359 if (mode != TLSEXT_max_fragment_length_DISABLED
3360 && !IS_MAX_FRAGMENT_LENGTH_EXT_VALID(mode)) {
3365 ctx->ext.max_fragment_len_mode = mode;
3369 int SSL_set_tlsext_max_fragment_length(SSL *ssl, uint8_t mode)
3371 if (mode != TLSEXT_max_fragment_length_DISABLED
3372 && !IS_MAX_FRAGMENT_LENGTH_EXT_VALID(mode)) {
3377 ssl->ext.max_fragment_len_mode = mode;