Home
last modified time | relevance | path

Searched refs:e (Results 76 – 100 of 564) sorted by relevance

12345678910>>...23

/openssl/crypto/bn/
H A Dbn_sqrt.c25 int e, i, j; in BN_mod_sqrt() local
82 e = 1; in BN_mod_sqrt()
83 while (!BN_is_bit_set(p, e)) in BN_mod_sqrt()
84 e++; in BN_mod_sqrt()
87 if (e == 1) { in BN_mod_sqrt()
107 if (e == 2) { in BN_mod_sqrt()
220 if (!BN_rshift(q, q, e)) in BN_mod_sqrt()
308 for (i = 1; i < e; i++) { in BN_mod_sqrt()
321 if (i >= e) { in BN_mod_sqrt()
329 for (j = e - i - 1; j > 0; j--) { in BN_mod_sqrt()
[all …]
H A Dbn_blind.c19 BIGNUM *e; member
87 BN_free(r->e); in BN_BLINDING_free()
105 if (++b->counter == BN_BLINDING_COUNTER && b->e != NULL && in BN_BLINDING_update()
234 const BIGNUM *e, BIGNUM *m, BN_CTX *ctx, in BN_BLINDING_create_param() argument
259 if (e != NULL) { in BN_BLINDING_create_param()
260 BN_free(ret->e); in BN_BLINDING_create_param()
261 ret->e = BN_dup(e); in BN_BLINDING_create_param()
263 if (ret->e == NULL) in BN_BLINDING_create_param()
291 if (!ret->bn_mod_exp(ret->A, ret->A, ret->e, ret->mod, ctx, ret->m_ctx)) in BN_BLINDING_create_param()
294 if (!BN_mod_exp(ret->A, ret->A, ret->e, ret->mod, ctx)) in BN_BLINDING_create_param()
/openssl/fuzz/corpora/conf/
H A D39c6330e572062dc0c0411ca035b0b48eeef27801 .include . e .
8 .include e .
20 .include e .
45 .include .. e n .
50 .include ..e ..ud
62 .include e .
H A Dbebc77c23e46d2f27e22b0f4a45ad463da86387511 e::=
15 e*::=
39 5e::=
50 ~e::=
123 e\s;::=:
H A Dda55664107d5cddca563d3e625fe2fa13589394c143 e::=
177 e::=
191 [de]e::=
246 ::=e:*=0
317 e::=
321 e.::=
H A D7c6a4ff6c6d58a9a6feded7e5e35a5ae16599300173 e::=
209 e::=
223 [de]e::=
278 ::=e:*=0
362 e::=
366 e.::=
510 1=��������::=#e::=
660 e::=s;::=
H A Dbfc9d276eae58815fa95ad2e5ee3d054fc0a7832173 e::=
209 e::=
223 [de]e::=
278 ::=e:*=0
362 e::=
366 e.::=
510 1=��������::=#e::=
659 e::=s;::=
H A Dfbc89a713370c975c1b9adc6524dec31b4870e84173 e::=
209 e::=
223 [de]e::=
278 ::=e:*=0
362 e::=
366 e.::=
511 a::=X=9::=#e::=
661 e::=s;::=
H A Dd80ce918de67178ff1b618a47ebceb27db56d03e1 .include .e ..
11 .include e ..lude clude clude.
12 .include e.
26 .include .e .k.includeude ..
H A D44a92e0a0dbd70e73c9b328e27d16e7a58c6f76b32 .include .e.
39 .include .clude .e ..
115 .include �.ude .clude .e ..
134 .include �.ude .clude .e ..
166 .include .e ..
182 .include .clude .e ..
H A D101927e91da6659fe411c2ab987618972ccbd6e5175 e::=
211 e::=
237 V::=e::=
323 ::=e:*=0
427 e::=
431 e.::=
594 a::=X=9::=#e::=
816 e::=s;::=
/openssl/util/perl/OpenSSL/
H A DTest.pm444 my $e = 0;
492 $r = $hooks{exit_checker}->($e);
506 print STDERR "$prefix$display_cmd => $e\n"
509 print STDERR "$prefix$display_cmd => $e\n";
585 croak "$f isn't a file" if -e $f && ! -f $f;
628 croak "$f isn't a file" if -e $f && ! -f $f;
668 croak "$f isn't a file" if -e $f && ! -f $f;
712 croak "$f isn't a file" if -e $f && ! -f $f;
1054 my $e = pop || "";
1064 my $e = pop || "";
[all …]
/openssl/engines/
H A De_devcrypto.c542 ENGINE_unregister_ciphers(e); in rebuild_known_cipher_nids()
543 ENGINE_register_ciphers(e); in rebuild_known_cipher_nids()
887 ENGINE_unregister_digests(e); in rebuild_known_digest_nids()
888 ENGINE_register_digests(e); in rebuild_known_digest_nids()
1153 rebuild_known_digest_nids(e); in devcrypto_ctrl()
1338 ENGINE *e = NULL; in engine_load_devcrypto_int() local
1343 if ((e = ENGINE_new()) == NULL in engine_load_devcrypto_int()
1344 || !bind_devcrypto(e)) { in engine_load_devcrypto_int()
1346 ENGINE_free(e); in engine_load_devcrypto_int()
1351 ENGINE_add(e); in engine_load_devcrypto_int()
[all …]
H A De_dasync.c57 static int dasync_destroy(ENGINE *e);
58 static int dasync_init(ENGINE *e);
59 static int dasync_finish(ENGINE *e);
209 static int bind_dasync(ENGINE *e) in bind_dasync() argument
232 if (!ENGINE_set_id(e, engine_dasync_id) in bind_dasync()
234 || !ENGINE_set_pkey_meths(e, dasync_pkey) in bind_dasync()
235 || !ENGINE_set_digests(e, dasync_digests) in bind_dasync()
330 if (!bind_dasync(e)) in bind_helper()
371 static int dasync_init(ENGINE *e) in dasync_init() argument
377 static int dasync_finish(ENGINE *e) in dasync_finish() argument
[all …]
H A De_ossltest.c52 static int ossltest_destroy(ENGINE *e);
53 static int ossltest_init(ENGINE *e);
54 static int ossltest_finish(ENGINE *e);
412 static int bind_ossltest(ENGINE *e) in bind_ossltest() argument
417 if (!ENGINE_set_id(e, engine_ossltest_id) in bind_ossltest()
419 || !ENGINE_set_digests(e, ossltest_digests) in bind_ossltest()
435 static int bind_helper(ENGINE *e, const char *id) in bind_helper() argument
439 if (!bind_ossltest(e)) in bind_helper()
472 static int ossltest_init(ENGINE *e) in ossltest_init() argument
478 static int ossltest_finish(ENGINE *e) in ossltest_finish() argument
[all …]
/openssl/test/recipes/30-test_evp_pkey_provided/
H A DDH.pub.txt7 fa:48:95:2e:38:d9:c5:e6:da:fb:6c:03:9d:4b:69:
8 b7:95:e4:5c:c0:93:4f:48:d9:7e:06:22:b2:de:f3:
10 68:c9:fa:e5:8e:62:7e:ff:49:6c:5b:b5:ba:f9:ef:
13 c6:07:8e:78:05:8f:7c:96:d9:12:e0:81:74:1a:e9:
15 14:32:f9:ed:c2:12:d6:c5:c6:b3:e5:f2:6e:f6:16:
H A DDH.priv.txt10 fa:48:95:2e:38:d9:c5:e6:da:fb:6c:03:9d:4b:69:
11 b7:95:e4:5c:c0:93:4f:48:d9:7e:06:22:b2:de:f3:
13 68:c9:fa:e5:8e:62:7e:ff:49:6c:5b:b5:ba:f9:ef:
16 c6:07:8e:78:05:8f:7c:96:d9:12:e0:81:74:1a:e9:
18 14:32:f9:ed:c2:12:d6:c5:c6:b3:e5:f2:6e:f6:16:
/openssl/ssl/
H A Dtls_depr.c22 void tls_engine_finish(ENGINE *e) in tls_engine_finish() argument
24 ENGINE_finish(e); in tls_engine_finish()
80 int SSL_CTX_set_client_cert_engine(SSL_CTX *ctx, ENGINE *e) in SSL_CTX_set_client_cert_engine() argument
82 if (!ENGINE_init(e)) { in SSL_CTX_set_client_cert_engine()
86 if (!ENGINE_get_ssl_client_cert_function(e)) { in SSL_CTX_set_client_cert_engine()
88 ENGINE_finish(e); in SSL_CTX_set_client_cert_engine()
91 ctx->client_cert_engine = e; in SSL_CTX_set_client_cert_engine()
H A Dpriority_queue.c108 struct pq_elem_st *e = pq->elements; in pqueue_swap_elem() local
117 e[h[i].index].posn = i; in pqueue_swap_elem()
118 e[h[j].index].posn = j; in pqueue_swap_elem()
124 struct pq_elem_st *e = pq->elements; in pqueue_move_elem() local
129 e[h[to].index].posn = to; in pqueue_move_elem()
281 e[i].used = 0; in pqueue_add_freelist()
283 e[from].posn = pq->freelist; in pqueue_add_freelist()
285 e[i].posn = i - 1; in pqueue_add_freelist()
293 struct pq_elem_st *e; in ossl_pqueue_reserve() local
315 if (e == NULL) { in ossl_pqueue_reserve()
[all …]
/openssl/crypto/sha/asm/
H A Dsha1-586.pl297 &add($e,$tmp1); # e+=c&d
682 my ($a,$b,$c,$d,$e);
767 my ($a,$b,$c,$d,$e);
838 my ($a,$b,$c,$d,$e);
879 my ($a,$b,$c,$d,$e);
913 my ($a,$b,$c,$d,$e);
1205 my ($a,$b,$c,$d,$e);
1283 my ($a,$b,$c,$d,$e);
1348 my ($a,$b,$c,$d,$e);
1383 my ($a,$b,$c,$d,$e);
[all …]
/openssl/crypto/err/
H A Derr.c532 l = ERR_GET_LIB(e); in ossl_err_string_int()
533 ls = ERR_lib_error_string(e); in ossl_err_string_int()
545 r = ERR_GET_REASON(e); in ossl_err_string_int()
547 if (ERR_SYSTEM_ERROR(e)) { in ossl_err_string_int()
551 rs = ERR_reason_error_string(e); in ossl_err_string_int()
570 ossl_err_string_int(e, "", buf, len); in ERR_error_string_n()
583 ERR_error_string_n(e, ret, (int)sizeof(buf)); in ERR_error_string()
597 l = ERR_GET_LIB(e); in ERR_lib_error_string()
628 if (ERR_SYSTEM_ERROR(e)) in ERR_reason_error_string()
631 l = ERR_GET_LIB(e); in ERR_reason_error_string()
[all …]
/openssl/test/recipes/04-test_pem_reading_data/
H A Ddsa-onecolumn.pem59 e
78 e
139 e
146 e
182 e
205 e
273 e
323 e
331 e
428 e
[all …]
/openssl/crypto/conf/
H A Dconf_def.c711 e = np = s; in str_copy()
714 e++; in str_copy()
715 if ((e[0] == ':') && (e[1] == ':')) { in str_copy()
717 rrp = e; in str_copy()
720 e += 2; in str_copy()
721 np = e; in str_copy()
726 r = *e; in str_copy()
727 *e = '\0'; in str_copy()
728 rp = e; in str_copy()
734 e++; in str_copy()
[all …]
/openssl/crypto/rsa/
H A Drsa_local.h63 BIGNUM *e; member
145 int (*rsa_keygen) (RSA *rsa, int bits, BIGNUM *e, BN_GENCB *cb);
147 BIGNUM *e, BN_GENCB *cb);
172 int ossl_rsa_check_public_exponent(const BIGNUM *e);
174 int ossl_rsa_check_prime_factor(BIGNUM *p, BIGNUM *e, int nbits, BN_CTX *ctx);
187 const BIGNUM *e, BN_CTX *ctx);
189 int nbits, const BIGNUM *e, BN_CTX *ctx,
/openssl/apps/
H A Dpkeyparam.c48 ENGINE *e = NULL; in pkeyparam_main() local
75 e = setup_engine(opt_arg(), 0); in pkeyparam_main()
112 if (e == NULL) in pkeyparam_main()
116 ctx = EVP_PKEY_CTX_new(pkey, e); in pkeyparam_main()
148 release_engine(e); in pkeyparam_main()

Completed in 74 milliseconds

12345678910>>...23