Searched refs:EVP_CIPHER_can_pipeline (Results 1 – 7 of 7) sorted by relevance
/openssl/doc/designs/ |
H A D | evp-cipher-pipeline.md | 67 int EVP_CIPHER_can_pipeline(const EVP_CIPHER *cipher, int enc); 174 - [x] b. A function `EVP_CIPHER_can_pipeline()` that checks if the provider 186 `EVP_CIPHER_can_pipeline()` will return true, allowing applications to
|
/openssl/crypto/evp/ |
H A D | evp_enc.c | 223 if (is_pipeline && !EVP_CIPHER_can_pipeline(cipher, enc)) { in evp_cipher_init_internal() 1889 int EVP_CIPHER_can_pipeline(const EVP_CIPHER *cipher, int enc) in EVP_CIPHER_can_pipeline() function
|
/openssl/doc/man3/ |
H A D | EVP_EncryptInit.pod | 34 EVP_CIPHER_can_pipeline, 164 int EVP_CIPHER_can_pipeline(const EVP_CIPHER *cipher, int enc); 486 =item EVP_CIPHER_can_pipeline() 506 operations in parallel. EVP_CIPHER_can_pipeline() may be called to check if the 1393 EVP_CIPHER_can_pipeline() returns 1 if the cipher can be used in a pipeline, 0 otherwise.
|
/openssl/test/ |
H A D | evp_extra_test.c | 5948 if (!TEST_false(EVP_CIPHER_can_pipeline(cipher, 1))) in test_evp_cipher_pipeline() 5950 if (!TEST_false(EVP_CIPHER_can_pipeline(EVP_aes_256_gcm(), 1))) in test_evp_cipher_pipeline() 5996 || !TEST_true(EVP_CIPHER_can_pipeline(pipeline_cipher, 1)) in test_evp_cipher_pipeline() 6065 || !TEST_true(EVP_CIPHER_can_pipeline(pipeline_cipher, 0)) in test_evp_cipher_pipeline()
|
/openssl/include/openssl/ |
H A D | evp.h | 617 int EVP_CIPHER_can_pipeline(const EVP_CIPHER *cipher, int enc);
|
/openssl/util/ |
H A D | libcrypto.num | 5834 EVP_CIPHER_can_pipeline ? 3_5_0 EXIST::FUNCTION:
|
/openssl/ |
H A D | CHANGES.md | 88 EVP_CIPHER_can_pipeline(), EVP_CipherPipelineEncryptInit(),
|
Completed in 181 milliseconds