Home
last modified time | relevance | path

Searched refs:e (Results 101 – 125 of 564) sorted by relevance

12345678910>>...23

/openssl/engines/
H A De_capi.c409 static int capi_init(ENGINE *e) in capi_init() argument
498 static int capi_destroy(ENGINE *e) in capi_destroy() argument
510 static int capi_finish(ENGINE *e) in capi_finish() argument
533 static int bind_capi(ENGINE *e) in bind_capi() argument
577 if (!bind_capi(e)) in bind_helper()
674 BIGNUM *e = NULL, *n = NULL; in capi_get_pkey() local
690 e = BN_new(); in capi_get_pkey()
693 if (e == NULL || n == NULL) { in capi_get_pkey()
694 BN_free(e); in capi_get_pkey()
699 RSA_set0_key(rkey, n, e, NULL); in capi_get_pkey()
[all …]
H A De_padlock.c74 static int padlock_init(ENGINE *e);
80 static int padlock_ciphers(ENGINE *e, const EVP_CIPHER **cipher,
94 static int padlock_bind_helper(ENGINE *e) in padlock_bind_helper() argument
112 if (!ENGINE_set_id(e, padlock_id) || in padlock_bind_helper()
113 !ENGINE_set_name(e, padlock_name) || in padlock_bind_helper()
114 !ENGINE_set_init_function(e, padlock_init) || in padlock_bind_helper()
115 (padlock_use_ace && !ENGINE_set_ciphers(e, padlock_ciphers)) || in padlock_bind_helper()
116 (padlock_use_rng && !ENGINE_set_RAND(e, &padlock_rand))) { in padlock_bind_helper()
144 static int padlock_init(ENGINE *e) in padlock_init() argument
154 static int padlock_bind_fn(ENGINE *e, const char *id) in padlock_bind_fn() argument
[all …]
H A De_afalg.c79 static int afalg_destroy(ENGINE *e);
80 static int afalg_init(ENGINE *e);
81 static int afalg_finish(ENGINE *e);
770 static int bind_afalg(ENGINE *e) in bind_afalg() argument
776 if (!ENGINE_set_id(e, engine_afalg_id) in bind_afalg()
777 || !ENGINE_set_name(e, engine_afalg_name) in bind_afalg()
797 if (!ENGINE_set_ciphers(e, afalg_ciphers)) { in bind_afalg()
814 if (!bind_afalg(e)) in bind_helper()
906 static int afalg_init(ENGINE *e) in afalg_init() argument
911 static int afalg_finish(ENGINE *e) in afalg_finish() argument
[all …]
/openssl/test/recipes/30-test_evp_pkey_provided/
H A DX25519.pub.txt3 85:20:f0:09:89:30:a7:54:74:8b:7d:dc:b4:3e:f7:
4 5a:0d:bf:3a:0d:26:38:1a:f4:eb:a4:a9:8e:aa:9b:
5 4e:6a
H A DX25519.priv.txt7 85:20:f0:09:89:30:a7:54:74:8b:7d:dc:b4:3e:f7:
8 5a:0d:bf:3a:0d:26:38:1a:f4:eb:a4:a9:8e:aa:9b:
9 4e:6a
/openssl/crypto/sha/asm/
H A Dsha1-x86_64.pl171 lea 0x5a827999($xi[0],$e),$e
172 add $t2,$e
175 add $t0,$e
187 lea 0x5a827999($xi[0],$e),$e
190 add $t2,$e
192 add $t0,$e
210 lea $K($xi[0],$e),$e
212 add $t2,$e
214 add $t0,$e
221 lea $K($xi[0],$e),$e
[all …]
H A Dsha256-armv4.pl86 my ($i,$a,$b,$c,$d,$e,$f,$g,$h) = @_;
94 eor $t0,$e,$e,ror#`$Sigma1[1]-$Sigma1[0]`
96 eor $t0,$t0,$e,ror#`$Sigma1[2]-$Sigma1[0]` @ Sigma1(e)
111 eor $t0,$e,$e,ror#`$Sigma1[1]-$Sigma1[0]`
113 eor $t0,$t0,$e,ror#`$Sigma1[2]-$Sigma1[0]` @ Sigma1(e)
122 and $t1,$t1,$e
154 my ($i,$a,$b,$c,$d,$e,$f,$g,$h) = @_;
170 eor $t0,$e,$e,ror#`$Sigma1[1]-$Sigma1[0]` @ from BODY_00_15
172 eor $t0,$t0,$e,ror#`$Sigma1[2]-$Sigma1[0]` @ Sigma1(e)
330 my ($a,$b,$c,$d,$e,$f,$g,$h);
[all …]
H A Dsha512-armv4.pl530 my ($a,$b,$c,$d,$e,$f,$g,$h)=@_;
534 vshr.u64 $t0,$e,#@Sigma1[0] @ $i
538 vshr.u64 $t1,$e,#@Sigma1[1]
542 vshr.u64 $t2,$e,#@Sigma1[2]
546 vsli.64 $t0,$e,#`64-@Sigma1[0]`
547 vsli.64 $t1,$e,#`64-@Sigma1[1]`
548 vmov $Ch,$e
549 vsli.64 $t2,$e,#`64-@Sigma1[2]`
585 my $e=@_[4]; # $e from NEON_00_15
605 vshr.u64 $d0,$e,#@Sigma1[0] @ from NEON_00_15
[all …]
H A Dsha512-mips.pl195 $ROTR $tmp0,$e,@Sigma1[0]
197 $ROTR $tmp1,$e,@Sigma1[1]
198 and $tmp2,$e
199 $ROTR $h,$e,@Sigma1[2]
216 $SRL $h,$e,@Sigma1[0]
218 $SLL $tmp1,$e,`$SZ*8-@Sigma1[2]`
219 and $tmp2,$e
220 $SRL $tmp0,$e,@Sigma1[1]
222 $SLL $tmp1,$e,`$SZ*8-@Sigma1[1]`
224 $SRL $tmp0,$e,@Sigma1[2]
[all …]
/openssl/test/
H A Dasn1_internal_test.c128 BIGNUM *e = NULL; in test_empty_nonoptional_content() local
133 || !TEST_ptr(e = BN_new()) in test_empty_nonoptional_content()
134 || !TEST_true(RSA_set0_key(rsa, n, e, NULL))) in test_empty_nonoptional_content()
137 n = e = NULL; /* They are now "owned" by |rsa| */ in test_empty_nonoptional_content()
149 BN_free(e); in test_empty_nonoptional_content()
H A Dbntest.c316 BN_free(e); in test_div_recip()
423 BN_free(e); in test_mod()
726 BN_free(e); in test_modexp_mont5()
804 BN_free(e); in test_gf2m_mod()
854 BN_free(e); in test_gf2m_mul()
976 BN_free(e); in test_gf2m_moddiv()
1024 BN_free(e); in test_gf2m_modexp()
1069 BN_free(e); in test_gf2m_modsqrt()
1102 && TEST_true(BN_GF2m_add(e, e, d)) in test_gf2m_modsolvequad()
1123 BN_free(e); in test_gf2m_modsolvequad()
[all …]
/openssl/crypto/ec/curve448/
H A Dcurve448.c111 gf_mul(e->t, e->y, eu); in pniels_to_pt()
112 gf_mul(e->x, d->z, e->y); in pniels_to_pt()
113 gf_mul(e->y, d->z, eu); in pniels_to_pt()
114 gf_sqr(e->z, d->z); in pniels_to_pt()
119 gf_add(e->y, n->b, n->a); in niels_to_pt()
121 gf_mul(e->t, e->y, e->x); in niels_to_pt()
122 gf_copy(e->z, ONE); in niels_to_pt()
131 gf_mul(a, e->a, b); in add_niels_to_pt()
133 gf_mul(d->y, e->b, b); in add_niels_to_pt()
152 gf_mul(a, e->b, b); in sub_niels_from_pt()
[all …]
/openssl/crypto/
H A Dsparcv9cap.c87 char *e; in OPENSSL_cpuid_setup() local
96 if ((e = getenv("OPENSSL_sparcv9cap"))) { in OPENSSL_cpuid_setup()
97 OPENSSL_sparcv9cap_P[0] = strtoul(e, NULL, 0); in OPENSSL_cpuid_setup()
98 if ((e = strchr(e, ':'))) in OPENSSL_cpuid_setup()
99 OPENSSL_sparcv9cap_P[1] = strtoul(e + 1, NULL, 0); in OPENSSL_cpuid_setup()
H A Driscvcap.c75 char *e; in OPENSSL_cpuid_setup() local
82 if ((e = getenv("OPENSSL_riscvcap"))) { in OPENSSL_cpuid_setup()
83 parse_env(e); in OPENSSL_cpuid_setup()
/openssl/apps/
H A Dgenrsa.c209 BIGNUM *e = NULL; in genrsa_main() local
212 EVP_PKEY_get_bn_param(pkey, "e", &e); in genrsa_main()
213 if (e == NULL) { in genrsa_main()
217 hexe = BN_bn2hex(e); in genrsa_main()
218 dece = BN_bn2dec(e); in genrsa_main()
224 BN_free(e); in genrsa_main()
/openssl/crypto/asn1/
H A Dameth_lib.c93 ENGINE *e; in EVP_PKEY_asn1_find() local
95 e = ENGINE_get_pkey_asn1_meth_engine(type); in EVP_PKEY_asn1_find()
96 if (e) { in EVP_PKEY_asn1_find()
97 *pe = e; in EVP_PKEY_asn1_find()
98 return ENGINE_get_pkey_asn1_meth(e, type); in EVP_PKEY_asn1_find()
116 ENGINE *e; in EVP_PKEY_asn1_find_str() local
117 ameth = ENGINE_pkey_asn1_find_str(&e, str, len); in EVP_PKEY_asn1_find_str()
122 if (!ENGINE_init(e)) in EVP_PKEY_asn1_find_str()
124 ENGINE_free(e); in EVP_PKEY_asn1_find_str()
125 *pe = e; in EVP_PKEY_asn1_find_str()
/openssl/fuzz/corpora/conf/
H A D22c2eaeac44a1a5e85a059e91b71f4924214edf36 e.::=
253 ;e::=
318 e::=
336 e::=
H A D8827de4417762ae21635d3c147fb26c79bef3866145 e::=
188 e::=
211 V::=e
350 e::=
354 e.::=
861 e=0=
903 &e::= -1::=
H A De7709d3638103c9812debc93cf22d943d9bdf1a411 e::=
14 e*::=
38 5e::=
/openssl/crypto/x509/
H A Dv3_enum.c42 const ASN1_ENUMERATED *e) in i2s_ASN1_ENUMERATED_TABLE() argument
47 strval = ASN1_ENUMERATED_get(e); in i2s_ASN1_ENUMERATED_TABLE()
52 return i2s_ASN1_ENUMERATED(method, e); in i2s_ASN1_ENUMERATED_TABLE()
/openssl/util/perl/OpenSSL/
H A Dfallback.pm79 unless (-e $path
105 unless -e $checked && -d $checked;
108 unless -e $checked && -d $checked;
/openssl/doc/man3/
H A DERR_error_string.pod13 char *ERR_error_string(unsigned long e, char *buf);
14 void ERR_error_string_n(unsigned long e, char *buf, size_t len);
16 const char *ERR_lib_error_string(unsigned long e);
17 const char *ERR_reason_error_string(unsigned long e);
21 const char *ERR_func_error_string(unsigned long e);
26 error code I<e>, and places it at I<buf>. I<buf> must be at least 256
/openssl/apps/include/
H A Dapps.h125 const char *pass, ENGINE *e, const char *desc);
127 const char *pass, ENGINE *e, const char *desc);
176 # define setup_engine(e, debug) setup_engine_methods(e, (unsigned int)-1, debug) argument
177 void release_engine(ENGINE *e);
178 int init_engine(ENGINE *e);
179 int finish_engine(ENGINE *e);
180 char *make_engine_uri(ENGINE *e, const char *key_id, const char *desc);
182 int get_legacy_pkey_id(OSSL_LIB_CTX *libctx, const char *algname, ENGINE *e);
258 const char *algname, ENGINE *e, int do_param,
/openssl/include/internal/
H A De_os.h32 # define set_sys_error(e) errno=(e) argument
53 # define set_sys_error(e) SetLastError(e) argument
391 # define recvfrom(a,b,c,d,e,f) recvfrom(a,b,(socklen_t)c,d,e,f) argument
/openssl/test/recipes/04-test_pem_reading_data/
H A Dcert-onecolumn.pem210 e
274 e
394 e
650 e
714 e
834 e
948 e
1066 e
1132 e
1150 e
[all …]

Completed in 78 milliseconds

12345678910>>...23