Home | History | Annotate | Download | only in openssh

Lines Matching defs:f4

1523 	BIGNUM *f4 = NULL;
1531 if ((private = RSA_new()) == NULL || (f4 = BN_new()) == NULL) {
1535 if (!BN_set_word(f4, RSA_F4) ||
1536 !RSA_generate_key_ex(private, bits, f4, NULL)) {
1546 if (f4 != NULL)
1547 BN_free(f4);