Lines Matching defs:e
59 BIGNUM *e;
62 e = BN_new();
63 if (e == NULL) {
68 if (!BN_set_word(e, RSA_F4)) {
79 if (!RSA_generate_key_ex(rsa, key_bits, e, NULL)) {
89 BN_free(e);
95 BN_free(e);
211 ENGINE *e;
214 e = ENGINE_by_id("pkcs11");
215 if (!e) {
220 if (!ENGINE_init(e)) {
227 if (!ENGINE_ctrl_cmd_string(e, "PIN", key_pass, 0)) {
233 pkey = ENGINE_load_private_key(e, uri, NULL, NULL);
237 ENGINE_free(e);