Searched refs:numpipes (Results 1 – 11 of 11) sorted by relevance
/openssl/test/ |
H A D | fake_pipelineprov.c | 34 size_t numpipes; member 53 ctx->numpipes = 0; in fake_pipeline_newctx() 66 for (i = 0; i < ctx->numpipes; i++) in fake_pipeline_freectx() 88 ctx->numpipes = numpipes; in fake_pipeline_init() 89 for (i = 0; i < numpipes; i++) { in fake_pipeline_init() 116 int fake_pipeline_update(void *vctx, size_t numpipes, in fake_pipeline_update() argument 125 for (i = 0; i < numpipes; i++) { in fake_pipeline_update() 137 int fake_pipeline_final(void *vctx, size_t numpipes, in fake_pipeline_final() argument 145 for (i = 0; i < numpipes; i++) { in fake_pipeline_final() 209 for (i = 0; i < ctx->numpipes; i++) { in fake_pipeline_aead_get_ctx_params() [all …]
|
H A D | evp_extra_test.c | 5936 size_t numpipes, plaintextlen, i; in test_evp_cipher_pipeline() local 5958 for (numpipes = 1; numpipes <= EVP_MAX_PIPES; numpipes++) { in test_evp_cipher_pipeline() 5973 for (i = 0; i < numpipes; i++) { in test_evp_cipher_pipeline() 6011 for (i = 0; i < numpipes; i++) { in test_evp_cipher_pipeline() 6020 for (i = 0; i < numpipes; i++) in test_evp_cipher_pipeline() 6032 for (i = 0; i < numpipes; i++) { in test_evp_cipher_pipeline() 6058 for (i = 0; i < numpipes; i++) in test_evp_cipher_pipeline() 6080 for (i = 0; i < numpipes; i++) { in test_evp_cipher_pipeline() 6088 for (i = 0; i < numpipes; i++) { in test_evp_cipher_pipeline() 6095 for (i = 0; i < numpipes; i++) { in test_evp_cipher_pipeline() [all …]
|
H A D | sslapitest.c | 11289 size_t written, readbytes, offset, msglen, fragsize = 10, numpipes = 5; in test_pipelining() local 11332 numpipes = 2; in test_pipelining() 11335 msglen = fragsize * numpipes; in test_pipelining() 11369 if (!TEST_true(SSL_set_max_pipelines(peera, numpipes)) in test_pipelining() 11398 expectedreads = idx == 4 ? numpipes + 1 in test_pipelining() 11399 : (idx == 3 ? numpipes - 1 : numpipes); in test_pipelining()
|
/openssl/doc/designs/ |
H A D | evp-cipher-pipeline.md | 90 * numpipes) 93 * numpipes) 95 * numpipes) 97 * numpipes) 107 * numpipes) 109 * numpipes) 111 * numpipes) 123 * numpipes) 141 * length must be numpipes) 146 * length must be numpipes) [all …]
|
/openssl/engines/ |
H A D | e_dasync.c | 164 unsigned int numpipes; member 652 pipe_ctx->numpipes = arg; in dasync_cipher_ctrl_helper() 657 pipe_ctx->numpipes = arg; in dasync_cipher_ctrl_helper() 662 pipe_ctx->numpipes = arg; in dasync_cipher_ctrl_helper() 730 pipe_ctx->numpipes = 0; in dasync_cipher_init_key_helper() 749 pipes = pipe_ctx->numpipes; in dasync_cipher_helper() 776 pipe_ctx->numpipes = 0; in dasync_cipher_helper()
|
/openssl/crypto/evp/ |
H A D | evp_enc.c | 479 size_t numpipes, in EVP_CipherPipelineEncryptInit() argument 482 if (numpipes > EVP_MAX_PIPES) { in EVP_CipherPipelineEncryptInit() 487 ctx->numpipes = numpipes; in EVP_CipherPipelineEncryptInit() 501 numpipes, in EVP_CipherPipelineEncryptInit() 509 size_t numpipes, in EVP_CipherPipelineDecryptInit() argument 512 if (numpipes > EVP_MAX_PIPES) { in EVP_CipherPipelineDecryptInit() 517 ctx->numpipes = numpipes; in EVP_CipherPipelineDecryptInit() 531 numpipes, in EVP_CipherPipelineDecryptInit() 573 for (i = 0; i < ctx->numpipes; i++) in EVP_CipherPipelineUpdate() 623 for (i = 0; i < ctx->numpipes; i++) in EVP_CipherPipelineFinal() [all …]
|
H A D | evp_local.h | 55 size_t numpipes; member
|
/openssl/doc/man7/ |
H A D | provider-cipher.pod | 41 size_t keylen, size_t numpipes, 45 size_t keylen, size_t numpipes, 48 int OSSL_FUNC_cipher_pipeline_update(void *cctx, size_t numpipes, 52 int OSSL_FUNC_cipher_pipeline_final(void *cctx, size_t numpipes, 208 The I<numpipes> parameter is the number of pipes in the pipeline. The I<iv> parameter 212 All arrays are of length I<numpipes>. See L<EVP_CipherPipelineEncryptInit(3)> for more
|
/openssl/include/openssl/ |
H A D | core_dispatch.h | 388 size_t numpipes, const unsigned char **iv, size_t ivlen, 393 size_t numpipes, const unsigned char **iv, size_t ivlen, 396 (void *cctx, size_t numpipes, 400 (void *cctx, size_t numpipes,
|
H A D | evp.h | 817 size_t numpipes, 822 size_t numpipes,
|
/openssl/doc/man3/ |
H A D | EVP_EncryptInit.pod | 168 size_t numpipes, 173 size_t numpipes, 511 The I<key>, of length I<keylen>, is the symmetric key to use. The I<numpipes> 513 I<numpipes> cannot exceed B<EVP_MAX_PIPES>. The I<iv> parameter is an array of 514 buffer pointers, containing IVs. The array size must be equal to I<numpipes>. 846 The array size must be equal to I<numpipes> used in
|
Completed in 151 milliseconds