Lines Matching defs:strength
101 /* (Step 3) Determine strength and check rand generator strength is ok -
103 * strength than is required.
164 * Validates the RSA key size based on the target strength.
169 * strength The target strength in bits. -1 means the target
170 * strength is unknown.
171 * Returns: 1 if the key size matches the target strength, or 0 otherwise.
173 int ossl_rsa_sp800_56b_validate_strength(int nbits, int strength)
183 if (strength != -1 && s != strength) {
191 * Validate that the random bit generator is of sufficient strength to generate
370 /* (Steps 1a-1b) : Currently ignores the strength check */