| /freebsd/crypto/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() 82 size_t numpipes, const unsigned char **iv, in fake_pipeline_init() argument 88 ctx->numpipes = numpipes; in fake_pipeline_init() 89 for (i = 0; i < numpipes; i++) { in fake_pipeline_init() 102 size_t numpipes, const unsigned char **iv, in fake_pipeline_einit() argument 105 return fake_pipeline_init(vctx, key, keylen, numpipes, iv, ivlen, 1); in fake_pipeline_einit() 110 size_t numpipes, const unsigned char **iv, in fake_pipeline_dinit() argument 113 return fake_pipeline_init(vctx, key, keylen, numpipes, iv, ivlen, 0); in fake_pipeline_dinit() [all …]
|
| H A D | evp_extra_test.c | 6610 size_t numpipes, plaintextlen, i; in test_evp_cipher_pipeline() local 6633 for (numpipes = 1; numpipes <= EVP_MAX_PIPES; numpipes++) { in test_evp_cipher_pipeline() 6648 for (i = 0; i < numpipes; i++) { in test_evp_cipher_pipeline() 6671 key, keylen, numpipes, in test_evp_cipher_pipeline() 6684 for (i = 0; i < numpipes; i++) { in test_evp_cipher_pipeline() 6693 for (i = 0; i < numpipes; i++) in test_evp_cipher_pipeline() 6705 for (i = 0; i < numpipes; i++) { in test_evp_cipher_pipeline() 6731 for (i = 0; i < numpipes; i++) in test_evp_cipher_pipeline() 6740 key, keylen, numpipes, in test_evp_cipher_pipeline() 6753 for (i = 0; i < numpipes; i++) { in test_evp_cipher_pipeline() [all …]
|
| H A D | sslapitest.c | 11648 size_t written, readbytes, offset, msglen, fragsize = 10, numpipes = 5; in test_pipelining() local 11691 numpipes = 2; in test_pipelining() 11694 msglen = fragsize * numpipes; in test_pipelining() 11728 if (!TEST_true(SSL_set_max_pipelines(peera, numpipes)) in test_pipelining() 11757 expectedreads = idx == 4 ? numpipes + 1 in test_pipelining() 11758 : (idx == 3 ? numpipes - 1 : numpipes); in test_pipelining()
|
| /freebsd/crypto/openssl/doc/designs/ |
| H A D | evp-cipher-pipeline.md | 75 * @param iv array of pointers (array length must be numpipes) 80 size_t numpipes, 85 size_t numpipes, 90 * numpipes) 93 * numpipes) 95 * numpipes) 97 * numpipes) 98 * @param inl pointer to array of input length (array length must be numpipes) 107 * numpipes) 109 * numpipes) [all …]
|
| /freebsd/crypto/openssl/engines/ |
| H A D | e_dasync.c | 164 unsigned int numpipes; member 647 pipe_ctx->numpipes = arg; in dasync_cipher_ctrl_helper() 652 pipe_ctx->numpipes = arg; in dasync_cipher_ctrl_helper() 657 pipe_ctx->numpipes = arg; in dasync_cipher_ctrl_helper() 723 pipe_ctx->numpipes = 0; in dasync_cipher_init_key_helper() 741 pipes = pipe_ctx->numpipes; in dasync_cipher_helper() 763 pipe_ctx->numpipes = 0; in dasync_cipher_helper()
|
| /freebsd/crypto/openssl/crypto/evp/ |
| H A D | evp_enc.c | 658 size_t numpipes, in EVP_CipherPipelineEncryptInit() argument 661 if (numpipes > EVP_MAX_PIPES) { in EVP_CipherPipelineEncryptInit() 666 ctx->numpipes = numpipes; in EVP_CipherPipelineEncryptInit() 680 numpipes, in EVP_CipherPipelineEncryptInit() 688 size_t numpipes, in EVP_CipherPipelineDecryptInit() argument 691 if (numpipes > EVP_MAX_PIPES) { in EVP_CipherPipelineDecryptInit() 696 ctx->numpipes = numpipes; in EVP_CipherPipelineDecryptInit() 710 numpipes, in EVP_CipherPipelineDecryptInit() 752 for (i = 0; i < ctx->numpipes; i++) in EVP_CipherPipelineUpdate() 755 return ctx->cipher->p_cupdate(ctx->algctx, ctx->numpipes, in EVP_CipherPipelineUpdate() [all …]
|
| H A D | evp_local.h | 54 size_t numpipes; member
|
| /freebsd/crypto/openssl/doc/man7/ |
| H A D | provider-cipher.pod | 47 size_t keylen, size_t numpipes, 51 size_t keylen, size_t numpipes, 54 int OSSL_FUNC_cipher_pipeline_update(void *cctx, size_t numpipes, 58 int OSSL_FUNC_cipher_pipeline_final(void *cctx, size_t numpipes, 221 The I<numpipes> parameter is the number of pipes in the pipeline. The I<iv> parameter 225 All arrays are of length I<numpipes>. See L<EVP_CipherPipelineEncryptInit(3)> for more
|
| /freebsd/crypto/openssl/include/openssl/ |
| H A D | core_dispatch.h | 389 size_t numpipes, const unsigned char **iv, size_t ivlen, 394 size_t numpipes, const unsigned char **iv, size_t ivlen, 397 (void *cctx, size_t numpipes, 401 (void *cctx, size_t numpipes,
|
| H A D | evp.h | 824 size_t numpipes, 829 size_t numpipes,
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | EVP_EncryptInit.pod | 170 size_t numpipes, 175 size_t numpipes, 516 The I<key>, of length I<keylen>, is the symmetric key to use. The I<numpipes> 518 I<numpipes> cannot exceed B<EVP_MAX_PIPES>. The I<iv> parameter is an array of 519 buffer pointers, containing IVs. The array size must be equal to I<numpipes>. 855 The array size must be equal to I<numpipes> used in
|