/openssl-master/crypto/lhash/ |
A D | lh_stats.c | 99 unsigned long total = 0, n_used = 0; in OPENSSL_LH_node_usage_stats_bio() local 106 total += num; in OPENSSL_LH_node_usage_stats_bio() 110 BIO_printf(out, "%lu items\n", total); in OPENSSL_LH_node_usage_stats_bio() 114 (int)(total / lh->num_nodes), in OPENSSL_LH_node_usage_stats_bio() 115 (int)((total % lh->num_nodes) * 100 / lh->num_nodes), in OPENSSL_LH_node_usage_stats_bio() 116 (int)(total / n_used), (int)((total % n_used) * 100 / n_used)); in OPENSSL_LH_node_usage_stats_bio()
|
/openssl-master/crypto/evp/ |
A D | encode.c | 166 size_t total = 0; in EVP_EncodeUpdate() local 185 total = j; in EVP_EncodeUpdate() 188 total++; in EVP_EncodeUpdate() 192 while (inl >= ctx->length && total <= INT_MAX) { in EVP_EncodeUpdate() 197 total += j; in EVP_EncodeUpdate() 200 total++; in EVP_EncodeUpdate() 204 if (total > INT_MAX) { in EVP_EncodeUpdate() 212 *outl = total; in EVP_EncodeUpdate()
|
/openssl-master/crypto/x509/ |
A D | v3_utl.c | 1159 int total; member 1170 v6stat.total = 0; in ipv6_from_asc() 1185 if (v6stat.total != 16) in ipv6_from_asc() 1189 if (v6stat.total == 16) in ipv6_from_asc() 1196 if (v6stat.total > 0) in ipv6_from_asc() 1235 if (s->total == 16) in ipv6_cb() 1240 s->zero_pos = s->total; in ipv6_cb() 1242 else if (s->zero_pos != s->total) in ipv6_cb() 1249 if (s->total > 12) in ipv6_cb() 1256 s->total += 4; in ipv6_cb() [all …]
|
/openssl-master/crypto/perlasm/ |
A D | cbc.pl | 326 $total=16+4; 327 $total+=4 if ($p1 > 0); 328 $total+=4 if ($p2 > 0); 329 $total+=4 if ($p3 > 0); 330 &add("esp",$total);
|
/openssl-master/crypto/encode_decode/ |
A D | decoder_pkey.c | 222 int total; member 292 data->total++; in collect_decoder() 404 (void *)ctx, collect_decoder_data.total); in ossl_decoder_ctx_setup_for_pkey()
|
/openssl-master/doc/man3/ |
A D | OCSP_REQUEST_new.pod | 46 OCSP_request_onereq_count() returns the total number of B<OCSP_ONEREQ> 64 OCSP_request_onereq_count() returns the total number of B<OCSP_ONEREQ>
|
A D | EC_GROUP_new.pod | 143 the total number of curves available, then the first I<nitems> curves will be 144 returned. Otherwise the total number of curves will be provided. The return 145 value is the total number of curves available (whether that number has been 147 do nothing other than return the total number of curves available.
|
A D | X509_NAME_get_index_by_NID.pod | 37 X509_NAME_entry_count() returns the total number of entries in B<name>. 82 X509_NAME_entry_count() returns the total number of entries.
|
A D | SSL_CTX_set1_curves.pod | 63 in the supported groups extension. It returns the total number of 72 server-side SSL B<ssl>. If B<n> is -1 then the total number of shared groups is 112 is no shared group B<n>; or the total number of shared groups if B<n>
|
A D | SSL_get_client_random.pod | 28 total number of bytes that were actually copied. If B<outlen> is 30 total size of the client_random value.
|
A D | EVP_EncodeInit.pod | 48 is output plus an additional newline character (i.e. 65 bytes in total). The 77 65 bytes plus an additional NUL terminator (i.e. 66 bytes in total). 91 created plus 1 byte for a NUL terminator (i.e. 25 bytes in total). The length of
|
A D | EVP_BytesToKey.pod | 35 If the total key and IV length is less than the digest length and
|
A D | BIO_s_mem.pod | 61 and returns the total amount of data available. It is implemented as a macro. 128 BIO_get_mem_data() returns the total number of bytes available on success,
|
A D | EVP_PKEY_CTX_set_tls1_prf_md.pod | 56 The total length of all seeds cannot exceed 1024 bytes in length: this should
|
A D | SSL_get_shared_sigalgs.pod | 49 them all to B<NULL> and setting B<idx> to zero the total number of
|
A D | SSL_CTX_set_tlsext_use_srtp.pod | 81 "EXTRACTOR-dtls_srtp" and a NULL context value (use_context is 0). The total
|
A D | EVP_PKEY_CTX_set_hkdf_md.pod | 102 The total length of the info buffer cannot exceed 1024 bytes in length: this
|
A D | ERR_put_error.pod | 49 The total length of the string data per error is limited to 4096 characters.
|
A D | OBJ_nid2obj.pod | 76 The total amount of space required is returned. If I<no_name> is 0 then
|
A D | EVP_PKEY_keygen.pod | 80 with the generation operation. If I<idx> is -1 the total number of
|
A D | OCSP_resp_find_status.pod | 147 OCSP_resp_count() returns the total number of B<OCSP_SINGLERESP> fields in I<bs>
|
/openssl-master/crypto/ |
A D | param_build.c | 354 const size_t total = OSSL_PARAM_ALIGN_SIZE * (p_blks + bld->total_blocks); in OSSL_PARAM_BLD_to_param() local 364 params = OPENSSL_malloc(total); in OSSL_PARAM_BLD_to_param()
|
/openssl-master/apps/ |
A D | ca.c | 292 int create_ser = 0, free_passin = 0, total = 0, total_done = 0; in ca_main() local 951 total++; in ca_main() 971 total++; in ca_main() 992 total++; in ca_main() 1012 total++; in ca_main() 1044 total_done, total); in ca_main()
|
/openssl-master/ |
A D | NOTES-VMS.md | 55 certain limitations when it comes to total command length. We do
|
/openssl-master/providers/implementations/ciphers/ |
A D | cipher_aes_gcm_hw_s390x.inc | 154 /* update the total aad length */
|