/openssl/crypto/ |
H A D | LPdir_win.c | 100 size_t index = 0, len_0 = dirlen + 1; in LP_find_file() local 140 for (index = 0; index < len_0; index++) in LP_find_file() 141 wdir[index] = (TCHAR)directory[index]; in LP_find_file() 182 size_t index, len_0 = 0; in LP_find_file() local 193 for (index = 0; index < len_0; index++) in LP_find_file() 194 (*ctx)->entry_name[index] = (char)wdir[index]; in LP_find_file()
|
H A D | initthread.c | 38 const void *index; member 367 int ossl_init_thread_start(const void *index, void *arg, in ossl_init_thread_start() argument 415 hand->index = index; in ossl_init_thread_start() 424 static int init_thread_deregister(void *index, int all) in init_thread_deregister() argument 450 if (all || curr->index == index) { in init_thread_deregister() 476 int ossl_init_thread_deregister(void *index) in ossl_init_thread_deregister() argument 478 return init_thread_deregister(index, 0); in ossl_init_thread_deregister()
|
H A D | README-sparse_array.md | 31 accommodate the largest index added to the data structure. 33 The largest index used to add a value to the array determines the tree height: 48 index 0 results in the allocation of a top level node full of null pointers 114 Values can be removed from the sparse array by setting their index position to 116 height of the tree on removal. For example, now setting index 0 to NULL would
|
/openssl/crypto/txt_db/ |
H A D | txt_db.c | 39 ret->index = NULL; in TXT_DB_read() 43 if ((ret->index = OPENSSL_malloc(sizeof(*ret->index) * num)) == NULL) in TXT_DB_read() 48 ret->index[i] = NULL; in TXT_DB_read() 120 OPENSSL_free(ret->index); in TXT_DB_read() 137 lh = db->index[idx]; in TXT_DB_get_by_index() 182 db->index[field] = idx; in TXT_DB_create_index() 240 if (db->index[i] != NULL) { in TXT_DB_insert() 254 if (db->index[i] != NULL) { in TXT_DB_insert() 269 if (db->index[i] != NULL) { in TXT_DB_insert() 286 if (db->index != NULL) { in TXT_DB_free() [all …]
|
/openssl/crypto/bn/ |
H A D | rsaz_exp.c | 60 int index; 94 for (index = 3; index < 32; index++) { 96 rsaz_1024_scatter5_avx2(table_s, result, index); 207 index = 1014; 213 wvalue = (p_str[(index / 8) + 1] << 8) | p_str[index / 8]; 214 wvalue = (wvalue >> (index % 8)) & 31; 215 index -= 5; 264 int index; 287 for (index = 3; index < 16; index++) 297 for (index = 62; index >= 0; index--) { [all …]
|
/openssl/ms/ |
H A D | uplink.c | 34 void OPENSSL_Uplink(volatile void **table, int index) in OPENSSL_Uplink() argument 59 _T("OPENSSL_Uplink(%p,%02X): "), table, index); in OPENSSL_Uplink() 92 if (index > (int)p[0]) in OPENSSL_Uplink() 95 if (p[index]) in OPENSSL_Uplink() 96 func = p[index]; in OPENSSL_Uplink() 99 table[index] = func; in OPENSSL_Uplink()
|
/openssl/crypto/ec/ |
H A D | ecp_sm2p256.c | 347 unsigned int i, index, mask = 0xff; in ecp_sm2p256_point_G_mul_by_scalar() local 355 index = k[0] & mask; in ecp_sm2p256_point_G_mul_by_scalar() 356 if (index) { in ecp_sm2p256_point_G_mul_by_scalar() 357 index = index * 8; in ecp_sm2p256_point_G_mul_by_scalar() 364 index = (k[i / 8] >> (8 * (i % 8))) & mask; in ecp_sm2p256_point_G_mul_by_scalar() 366 if (index) { in ecp_sm2p256_point_G_mul_by_scalar() 367 index = index + i * 256; in ecp_sm2p256_point_G_mul_by_scalar() 368 index = index * 8; in ecp_sm2p256_point_G_mul_by_scalar() 384 unsigned int index, mask = 0x0f; in ecp_sm2p256_point_P_mul_by_scalar() local 411 if (index) { in ecp_sm2p256_point_P_mul_by_scalar() [all …]
|
/openssl/ssl/ |
H A D | priority_queue.c | 39 size_t index; /* Constant index in elements[] */ member 69 assert(pq->elements[pq->heap[idx].index].used); \ 70 assert(pq->elements[pq->heap[idx].index].posn == idx) 117 e[h[i].index].posn = i; in pqueue_swap_elem() 118 e[h[j].index].posn = j; in pqueue_swap_elem() 129 e[h[to].index].posn = to; in pqueue_move_elem() 209 pq->heap[n].index = m; in ossl_pqueue_push() 240 elem = pq->heap->index; in ossl_pqueue_pop()
|
/openssl/test/ocsp-tests/ |
H A D | mk-ocsp-cert-chain.sh | 87 rm -f index.txt index.txt.attr 88 echo -n > index.txt 94 rm -f index.txt.old
|
/openssl/test/ |
H A D | pkey_meth_kdf_test.c | 19 static int test_kdf_tls1_prf(int index) in test_kdf_tls1_prf() argument 43 if (index == 0) { in test_kdf_tls1_prf() 81 static int test_kdf_hkdf(int index) in test_kdf_hkdf() argument 110 if (index == 0) { in test_kdf_hkdf()
|
H A D | lhash_test.c | 501 HT_DEF_KEY_FIELD(index, uint32_t) 542 uint32_t index; in do_mt_hash_work() local 562 index = test_random() % TEST_MT_POOL_SZ; in do_mt_hash_work() 566 expected_m = &test_mt_entries[index]; in do_mt_hash_work() 568 HT_SET_KEY_FIELD(&key, index, index); in do_mt_hash_work() 603 (unsigned int)index, in do_mt_hash_work() 618 giter, expected_rc, (unsigned int)index, in do_mt_hash_work()
|
/openssl/include/crypto/ |
H A D | cryptlib.h | 19 int ossl_init_thread_start(const void *index, void *arg, 21 int ossl_init_thread_deregister(void *index);
|
H A D | riscv_arch.def | 16 * second argument as the index in the array where the capability will be stored 17 * and third argument as the index of the bit to be used to encode the 27 * RISCV_DEFINE_CAP(EXTENSION NAME, array index, bit index, hwprobe key, hwprobe value) */
|
/openssl/demos/certs/ |
H A D | ocsprun.sh | 20 opensslcmd ocsp -port $PORT -index index.txt -CA intca.pem \
|
/openssl/crypto/ec/asm/ |
H A D | ecp_nistz256-armv4.pl | 767 add $out,$out,$index,lsl#2 817 cmp $index,#0 822 subne $index,$index,#1 896 add $out,$out,$index 897 mov $index,#64/4 900 subs $index,$index,#1 926 cmp $index,#0 931 subne $index,$index,#1 933 add $inp,$inp,$index 934 mov $index,#64/4 [all …]
|
H A D | ecp_nistz256-armv8.pl | 1653 add $out,$out,$index,lsl#2 1717 cmp $index,xzr 1719 add $index,$index,x3 1796 add $out,$out,$index 1797 mov $index,#64/8 1800 subs $index,$index,#1 1842 cmp $index,xzr 1844 add $index,$index,x3 1845 add $inp,$inp,$index 1846 mov $index,#64/8 [all …]
|
/openssl/doc/internal/man3/ |
H A D | ossl_lib_ctx_get_data.pod | 14 void *ossl_lib_ctx_get_data(OSSL_LIB_CTX *ctx, int index); 26 should be allocate a unique run once index in cryptlib.h. 39 be retrieved are specified with the given argument I<index>. The valid values of 40 I<index> are specified in cryptlib.h.
|
H A D | ossl_init_thread_deregister.pod | 17 int ossl_init_thread_start(const void *index, void *arg, 19 int ossl_init_thread_deregister(void *index); 36 The I<index> parameter should be a unique value that can be used to identify a 46 registered for) which the same I<index> value.
|
/openssl/crypto/ffc/ |
H A D | ffc_params.c | 104 void ossl_ffc_params_set_gindex(FFC_PARAMS *params, int index) in ossl_ffc_params_set_gindex() argument 106 params->gindex = index; in ossl_ffc_params_set_gindex() 109 void ossl_ffc_params_set_pcounter(FFC_PARAMS *params, int index) in ossl_ffc_params_set_pcounter() argument 111 params->pcounter = index; in ossl_ffc_params_set_pcounter() 114 void ossl_ffc_params_set_h(FFC_PARAMS *params, int index) in ossl_ffc_params_set_h() argument 116 params->h = index; in ossl_ffc_params_set_h()
|
/openssl/doc/man3/ |
H A D | CRYPTO_get_ex_new_index.pod | 77 Exdata types are identified by an B<index>, an integer guaranteed to be 88 are called in increasing order of their B<index> value. 98 B<idx> parameter should be an already-created index value. 100 When setting exdata, the pointer specified with a particular index is saved, 102 release the data, it must make sure to set a B<NULL> value at the index, 118 new_func() is called for every defined index. There is no requirement 126 free_func() is called for every defined index. Again, the state of the 134 The B<idx> is the index and is the value returned when the callbacks were 152 CRYPTO_get_ex_new_index() returns a new index or -1 on failure.
|
H A D | X509v3_get_ext_by_NID.pod | 66 X509v3_get_ext() retrieves extension I<loc> from I<x>. The index I<loc> 74 the extension is found, its index is returned, otherwise -1 is returned. 81 X509v3_delete_ext() deletes the extension with index I<loc> from I<x>. 83 If I<loc> is an invalid index value, NULL is returned. 120 X509v3_get_ext_by_critical() and its variants, a zero index return value 139 the extension index or -1 if an error occurs. 141 X509v3_get_ext_by_NID() returns the extension index or negative values if an
|
H A D | ASN1_ITEM_lookup.pod | 18 ASN1_ITEM_get() returns the B<ASN1_ITEM> with index I<i>. This function 19 returns NULL if the index I<i> is out of range.
|
/openssl/demos/sslecho/ |
H A D | A-SSL-Docs.txt | 7 OpenSSL Wiki: https://wiki.openssl.org/index.php/Main_Page 9 Original Simple Server: https://wiki.openssl.org/index.php/Simple_TLS_Server
|
/openssl/test/recipes/90-test_includes_data/conf-includes/ |
H A D | includes1.cnf | 17 database = $dir/index.txt # database index file.
|
/openssl/include/internal/ |
H A D | ffc.h | 134 void ossl_ffc_params_set_gindex(FFC_PARAMS *params, int index); 135 void ossl_ffc_params_set_pcounter(FFC_PARAMS *params, int index); 136 void ossl_ffc_params_set_h(FFC_PARAMS *params, int index);
|