Lines Matching defs:cctx
1348 const OSSL_PARAM *EVP_CIPHER_CTX_settable_params(EVP_CIPHER_CTX *cctx)
1352 if (cctx != NULL && cctx->cipher->settable_ctx_params != NULL) {
1353 alg = ossl_provider_ctx(EVP_CIPHER_get0_provider(cctx->cipher));
1354 return cctx->cipher->settable_ctx_params(cctx->algctx, alg);
1359 const OSSL_PARAM *EVP_CIPHER_CTX_gettable_params(EVP_CIPHER_CTX *cctx)
1363 if (cctx != NULL && cctx->cipher->gettable_ctx_params != NULL) {
1364 provctx = ossl_provider_ctx(EVP_CIPHER_get0_provider(cctx->cipher));
1365 return cctx->cipher->gettable_ctx_params(cctx->algctx, provctx);