Home
last modified time | relevance | path

Searched refs:res (Results 126 – 150 of 194) sorted by relevance

12345678

/openssl/crypto/cmp/
H A Dcmp_msg.c135 int res; in add1_extension() local
143 res = X509v3_add_ext(pexts, ext, 0) != NULL; in add1_extension()
145 return res; in add1_extension()
152 int res = 0; in add_crl_reason_extension() local
155 res = add1_extension(pexts, NID_crl_reason, 0 /* non-critical */, val); in add_crl_reason_extension()
157 return res; in add_crl_reason_extension()
1146 int res; in OSSL_CMP_MSG_write() local
1156 res = i2d_OSSL_CMP_MSG_bio(bio, msg); in OSSL_CMP_MSG_write()
1158 return res; in OSSL_CMP_MSG_write()
/openssl/doc/man3/
H A DBIO_ADDRINFO.pod25 int family, int socktype, int protocol, BIO_ADDRINFO **res);
28 int family, int socktype, BIO_ADDRINFO **res);
53 used. B<res> points at a pointer to hold the start of a B<BIO_ADDRINFO>
/openssl/test/recipes/
H A D25-test_x509.t341 my $res = grep(/-text/, @opts) ? run(app([@args], stdout => $tmpfile))
347 $res &&= !m/asn1 encoding/; # output must not include ASN.1 parse errors
352 return $res && $found;
/openssl/crypto/crmf/
H A Dcrmf_lib.c288 int64_t res; in crmf_asn1_get_int() local
290 if (!ASN1_INTEGER_get_int64(&res, a)) { in crmf_asn1_get_int()
294 if (res < INT_MIN) { in crmf_asn1_get_int()
298 if (res > INT_MAX) { in crmf_asn1_get_int()
302 return (int)res; in crmf_asn1_get_int()
/openssl/test/
H A Dbntest.c2383 res = 1; in test_rand_range_single()
2388 return res; in test_rand_range_single()
3082 res = 1; in test_mod_exp()
3090 return res; in test_mod_exp()
3120 res = 1; in test_mod_exp_consttime()
3128 return res; in test_mod_exp_consttime()
3163 res = 1; in test_mod_exp2_mont()
3172 return res; in test_mod_exp2_mont()
3200 res = 1; in test_mod_inverse()
3207 return res; in test_mod_inverse()
[all …]
H A Dhmactest.c255 int res = 0; in test_hmac_copy_uninited() local
270 res = 1; in test_hmac_copy_uninited()
275 return res; in test_hmac_copy_uninited()
H A Dthreadstest.c91 int res; in test_lock() local
96 res = TEST_true(CRYPTO_THREAD_read_lock(lock)) in test_lock()
103 return res; in test_lock()
1077 int res = 1; in test_multi_load() local
1083 res = test_multi_default(); in test_multi_load()
1100 NULL) && res; in test_multi_load()
H A Dparams_test.c620 int res; in check_int_from_text() local
637 res = OSSL_PARAM_get_long(&param, &val); in check_int_from_text()
640 if (res ^ a.expected_res) { in check_int_from_text()
642 "%d != %d", a.argname, a.strval, a.expected_res, res); in check_int_from_text()
H A Dcmp_vfy_test.c137 int res = TEST_int_eq(fixture->expected, in execute_validate_msg_test() local
142 return res && (!fixture->expected || TEST_ptr_eq(validated, fixture->cert)); in execute_validate_msg_test()
148 int res = TEST_int_eq(fixture->expected, in execute_validate_cert_path_test() local
153 return res; in execute_validate_cert_path_test()
H A Devp_extra_test.c870 int res = 0; in test_EVP_set_config_properties() local
879 res = 1; in test_EVP_set_config_properties()
882 return res; in test_EVP_set_config_properties()
889 int res = 0; in test_EVP_set_default_properties() local
929 res = 1; in test_EVP_set_default_properties()
934 return res; in test_EVP_set_default_properties()
3693 int res; in test_rand_agglomeration() local
3716 return res; in test_rand_agglomeration()
4297 res = 1; in evp_init_seq_set_iv()
4800 res = 1; in test_ivlen_change()
[all …]
/openssl/ssl/
H A Dpriority_queue.c232 void *res; in ossl_pqueue_pop() local
239 res = pq->heap->data; in ossl_pqueue_pop()
252 return res; in ossl_pqueue_pop()
/openssl/ssl/quic/
H A Dquic_channel.c1867 res->net_read_desired = 0; in ossl_quic_channel_subtick()
1868 res->net_write_desired = 0; in ossl_quic_channel_subtick()
1869 res->tick_deadline = ossl_time_infinite(); in ossl_quic_channel_subtick()
1882 res->net_read_desired = 0; in ossl_quic_channel_subtick()
1883 res->net_write_desired = 0; in ossl_quic_channel_subtick()
1932 res->net_read_desired = 0; in ossl_quic_channel_subtick()
1933 res->net_write_desired = 0; in ossl_quic_channel_subtick()
1934 res->tick_deadline = ossl_time_infinite(); in ossl_quic_channel_subtick()
1978 res->net_write_desired in ossl_quic_channel_subtick()
2393 int res; in ch_tx() local
[all …]
/openssl/crypto/x509/
H A Dv3_purp.c361 int res = setup_dp(x, sk_DIST_POINT_value(x->crldp, i)); in setup_crldp() local
363 if (res < 1) in setup_crldp()
364 return res; in setup_crldp()
408 int res; in ossl_x509v3_cache_extensions() local
576 res = setup_crldp(x); in ossl_x509v3_cache_extensions()
577 if (res == 0) in ossl_x509v3_cache_extensions()
/openssl/
H A DConfigure1949 my $res = abs2rel(absolutedir($dir), rel2abs($relativeto));
1951 return $res;
1968 my $res = abs2rel(catfile(absolutedir($d), $f), rel2abs($relativeto));
1970 return $res;
3110 my $res = $_;
3111 while (ref($res) eq "CODE") {
3112 $res = $res->();
3114 if (defined($res)) {
3115 if (ref($res) eq "ARRAY") {
3117 @$res;
[all …]
/openssl/engines/
H A De_afalg.c343 if (events[0].res < 0) { in afalg_fin_cipher_aio()
348 if (events[0].res == -EBUSY && retry++ < 3) { in afalg_fin_cipher_aio()
367 long long int op_ret = events[0].res; in afalg_fin_cipher_aio()
375 __FILE__, __LINE__, events[0].res); in afalg_fin_cipher_aio()
377 switch (events[0].res) { in afalg_fin_cipher_aio()
/openssl/crypto/dh/
H A Ddh_pmeth.c279 int res; in ffc_params_generate() local
303 prime_len, subprime_len, &res, in ffc_params_generate()
311 prime_len, subprime_len, &res, in ffc_params_generate()
/openssl/crypto/dsa/
H A Ddsa_pmeth.c225 int ret, res; in pkey_dsa_paramgen() local
244 dctx->qbits, &res, pcb); in pkey_dsa_paramgen()
H A Ddsa_ossl.c486 BIGNUM *res = NULL; in dsa_mod_inverse_fermat() local
497 res = r; in dsa_mod_inverse_fermat()
501 return res; in dsa_mod_inverse_fermat()
/openssl/crypto/evp/
H A De_aes.c3079 bulk = AES_gcm_encrypt(in + res, in aes_gcm_cipher()
3080 out + res, len - res, in aes_gcm_cipher()
3084 bulk += res; in aes_gcm_cipher()
3101 bulk = AES_gcm_encrypt(in + res, in aes_gcm_cipher()
3102 out + res, len - res, in aes_gcm_cipher()
3106 bulk += res; in aes_gcm_cipher()
3123 bulk = AES_gcm_decrypt(in + res, in aes_gcm_cipher()
3124 out + res, len - res, in aes_gcm_cipher()
3128 bulk += res; in aes_gcm_cipher()
3146 out + res, len - res, in aes_gcm_cipher()
[all …]
/openssl/apps/lib/
H A Dcmp_mock_srv.c480 int res = 0; in process_genm_itav() local
485 res = check_client_crl(crlstatuslist, ctx->crlOut); in process_genm_itav()
486 if (res < 0) in process_genm_itav()
489 rsp = OSSL_CMP_ITAV_new_crls(res == 0 ? NULL : ctx->crlOut); in process_genm_itav()
H A Dapps.c344 char *res; in app_conf_try_string() local
348 if (res == NULL) in app_conf_try_string()
352 return res; in app_conf_try_string()
724 if (res != 0) in warn_cert()
2666 ASN1_VALUE *res; in app_http_post_asn1() local
2687 return res; in app_http_post_asn1()
3430 EVP_PKEY *res = NULL; in app_keygen() local
3442 if (EVP_PKEY_keygen(ctx, &res) <= 0) in app_keygen()
3445 return res; in app_keygen()
3450 EVP_PKEY *res = NULL; in app_paramgen() local
[all …]
/openssl/test/helpers/
H A Dhandshake.c1323 BIO_ADDRINFO *res = NULL; in create_sctp_socks() local
1339 IPPROTO_SCTP, &res)) in create_sctp_socks()
1342 for (ai = res; ai != NULL; ai = BIO_ADDRINFO_next(ai)) { in create_sctp_socks()
1367 BIO_ADDRINFO_free(res); in create_sctp_socks()
1368 res = NULL; in create_sctp_socks()
1371 IPPROTO_SCTP, &res)) in create_sctp_socks()
1379 || !BIO_connect(consock, BIO_ADDRINFO_address(res), 0) in create_sctp_socks()
1393 BIO_ADDRINFO_free(res); in create_sctp_socks()
/openssl/doc/man7/
H A Dossl-guide-tls-server-block.pod57 errx(res, "Failed to create server SSL_CTX");
72 errx(res, "Failed to set the minimum TLS protocol version");
125 errx(res, "Failed to load the server certificate chain file");
137 errx(res, "Error loading the server private key file, "
214 errx(res, "Error creating acceptor bio");
227 errx(res, "Error setting up acceptor socket");
/openssl/include/crypto/
H A Dec.h50 __owur int ossl_ec_group_do_inverse_ord(const EC_GROUP *group, BIGNUM *res,
/openssl/providers/implementations/macs/
H A Dkmac_prov.c313 int res, t; in kmac_init() local
354 res = bytepad(out, NULL, kmac_string, sizeof(kmac_string), in kmac_init()
359 return res; in kmac_init()

Completed in 268 milliseconds

12345678