/openssl-master/crypto/ |
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()
|
A D | context.c | 316 CRYPTO_set_ex_data(ad, index, ptr); in ossl_lib_ctx_generic_new() 350 void *ossl_lib_ctx_get_data(OSSL_LIB_CTX *ctx, int index, in ossl_lib_ctx_get_data() argument 362 dynidx = ctx->dyn_indexes[index]; in ossl_lib_ctx_get_data() 369 CRYPTO_THREAD_unlock(ctx->index_locks[index]); in ossl_lib_ctx_get_data() 374 CRYPTO_THREAD_unlock(ctx->index_locks[index]); in ossl_lib_ctx_get_data() 381 CRYPTO_THREAD_unlock(ctx->index_locks[index]); in ossl_lib_ctx_get_data() 385 dynidx = ctx->dyn_indexes[index]; in ossl_lib_ctx_get_data() 389 CRYPTO_THREAD_unlock(ctx->index_locks[index]); in ossl_lib_ctx_get_data() 393 if (!ossl_lib_ctx_init_index(ctx, index, meth)) { in ossl_lib_ctx_get_data() 395 CRYPTO_THREAD_unlock(ctx->index_locks[index]); in ossl_lib_ctx_get_data() [all …]
|
A D | initthread.c | 37 const void *index; member 352 int ossl_init_thread_start(const void *index, void *arg, in ossl_init_thread_start() argument 402 hand->index = index; in ossl_init_thread_start() 411 static int init_thread_deregister(void *index, int all) in init_thread_deregister() argument 437 if (all || curr->index == index) { in init_thread_deregister() 463 int ossl_init_thread_deregister(void *index) in ossl_init_thread_deregister() argument 465 return init_thread_deregister(index, 0); in ossl_init_thread_deregister()
|
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-master/crypto/bn/ |
A D | rsaz_exp.c | 67 int index; 100 for (index = 3; index < 32; index++) { 102 rsaz_1024_scatter5_avx2(table_s, result, index); 213 index = 1014; 219 wvalue = (p_str[(index / 8) + 1] << 8) | p_str[index / 8]; 220 wvalue = (wvalue >> (index % 8)) & 31; 221 index -= 5; 267 int index; 289 for (index = 3; index < 16; index++) 299 for (index = 62; index >= 0; index--) { [all …]
|
/openssl-master/crypto/txt_db/ |
A D | txt_db.c | 40 ret->index = NULL; in TXT_DB_read() 44 if ((ret->index = OPENSSL_malloc(sizeof(*ret->index) * num)) == NULL) in TXT_DB_read() 49 ret->index[i] = NULL; in TXT_DB_read() 123 OPENSSL_free(ret->index); in TXT_DB_read() 140 lh = db->index[idx]; in TXT_DB_get_by_index() 185 db->index[field] = idx; in TXT_DB_create_index() 243 if (db->index[i] != NULL) { in TXT_DB_insert() 257 if (db->index[i] != NULL) { in TXT_DB_insert() 272 if (db->index[i] != NULL) { in TXT_DB_insert() 289 if (db->index != NULL) { in TXT_DB_free() [all …]
|
/openssl-master/ms/ |
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-master/doc/internal/man3/ |
A D | ossl_lib_ctx_get_data.pod | 20 void *ossl_lib_ctx_get_data(OSSL_LIB_CTX *ctx, int index, 34 Each such data item must have a corresponding CRYPTO_EX_DATA index 41 the library context I<ctx> associated with the given I<index>. An 42 OSSL_LIB_CTX_METHOD must be defined and given in the I<meth> parameter. The index 44 used to create or free items that are stored at that index whenever a library 46 index doesn't have to worry about that, just use the data available. 48 Deallocation of an index happens automatically when the library 53 should be allocate a unique run once index in cryptlib.h. 74 and a destructor to an index.
|
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.
|
A D | ossl_cmp_pkisi_get_status.pod | 52 int ossl_cmp_pkisi_check_pkifailureinfo(const OSSL_CMP_PKISI *si, int index); 72 with index I<index> in the PKIFailureInfo of the I<si>, or -1 on error.
|
/openssl-master/include/crypto/ |
A D | cryptlib.h | 19 int ossl_init_thread_start(const void *index, void *arg, 21 int ossl_init_thread_deregister(void *index);
|
/openssl-master/demos/certs/ |
A D | ocsprun.sh | 13 $OPENSSL ocsp -port $PORT -index index.txt -CA intca.pem \
|
/openssl-master/crypto/ffc/ |
A D | ffc_params.c | 100 void ossl_ffc_params_set_gindex(FFC_PARAMS *params, int index) in ossl_ffc_params_set_gindex() argument 102 params->gindex = index; in ossl_ffc_params_set_gindex() 105 void ossl_ffc_params_set_pcounter(FFC_PARAMS *params, int index) in ossl_ffc_params_set_pcounter() argument 107 params->pcounter = index; in ossl_ffc_params_set_pcounter() 110 void ossl_ffc_params_set_h(FFC_PARAMS *params, int index) in ossl_ffc_params_set_h() argument 112 params->h = index; in ossl_ffc_params_set_h()
|
/openssl-master/crypto/ec/asm/ |
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 …]
|
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-master/doc/man3/ |
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.
|
A D | X509v3_get_ext_by_NID.pod | 62 X509v3_get_ext() retrieves extension B<loc> from B<x>. The index B<loc> 70 the extension is found its index is returned otherwise B<-1> is returned. 77 X509v3_delete_ext() deletes the extension with index B<loc> from B<x>. 79 If B<loc> is in invalid index value B<NULL> is returned. 109 Extension indices start from zero, so a zero index return value is B<not> an 127 X509v3_get_ext_by_critical() return the an extension index or B<-1> if an
|
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.
|
A D | X509_NAME_get_index_by_NID.pod | 33 the next index matching B<nid> or B<obj> after B<lastpos>. B<lastpos> 40 corresponding to index B<loc>. Acceptable values for B<loc> run from 78 return the index of the next matching entry or -1 if not found. 85 requested entry or B<NULL> if the index is invalid.
|
A D | OCSP_REQUEST_new.pod | 50 contained in B<req> of index B<i>. The index value B<i> runs from 0 to 68 or B<NULL> if the index value is out or range.
|
/openssl-master/test/recipes/90-test_includes_data/conf-includes/ |
A D | includes1.cnf | 17 database = $dir/index.txt # database index file.
|
/openssl-master/include/internal/ |
A D | ffc.h | 126 void ossl_ffc_params_set_gindex(FFC_PARAMS *params, int index); 127 void ossl_ffc_params_set_pcounter(FFC_PARAMS *params, int index); 128 void ossl_ffc_params_set_h(FFC_PARAMS *params, int index);
|
/openssl-master/util/perl/OpenSSL/ |
A D | Ordinals.pm | 278 my $index = $filter->[1]; 279 @l = $index ? @{$self->{contents}->[$index] // []} : (); 281 my $index = $self->{name2num}->{$filter->[1]}; 282 @l = $index ? @{$self->{contents}->[$index] // []} : ();
|
/openssl-master/doc/man1/ |
A D | openssl-ocsp.pod.in | 56 [B<-index> I<file>] 308 =item B<-index> I<indexfile> 310 The I<indexfile> parameter is the name of a text index file in B<ca> 313 If the B<-index> option is specified then this command switches to 324 CA certificate corresponding to the revocation information in the index 325 file given with B<-index>. 459 new requests until it has processed the current one. The text index file 485 openssl ocsp -index demoCA/index.txt -port 8888 -rsigner rcert.pem -CA demoCA/cacert.pem 490 openssl ocsp -index demoCA/index.txt -port 8888 -rsigner rcert.pem -CA demoCA/cacert.pem 495 openssl ocsp -index demoCA/index.txt -rsigner rcert.pem -CA demoCA/cacert.pem [all …]
|
/openssl-master/test/ |
A D | test.cnf | 12 database = $dir/index.txt # database index file.
|