Lines Matching defs:level
3379 * Check whether the public key of `cert` meets the security level of `ctx`.
3385 int level = ctx->param->auth_level;
3388 * At security level zero, return without checking for a supported public
3393 if (level <= 0)
3400 if (level > NUM_AUTH_LEVELS)
3401 level = NUM_AUTH_LEVELS;
3403 return EVP_PKEY_get_security_bits(pkey) >= minbits_table[level - 1];
3434 * level of ``ctx``. Should not be checked for trust anchors (whether
3442 int level = ctx->param->auth_level;
3444 if (level <= 0)
3446 if (level > NUM_AUTH_LEVELS)
3447 level = NUM_AUTH_LEVELS;
3452 return secbits >= minbits_table[level - 1];