Lines Matching defs:tmpCtx
244787 EVP_CIPHER_CTX *tmpCtx = EVP_CIPHER_CTX_new();
244788 if(tmpCtx == NULL){
244789 return (void *)tmpCtx;
244791 EVP_CipherInit_ex(tmpCtx, (EVP_CIPHER *)cipher, NULL, NULL, NULL, mode);
244792 EVP_CIPHER_CTX_set_padding(tmpCtx, 0);
244793 EVP_CipherInit_ex(tmpCtx, NULL, NULL, key, initVector, mode);
244794 return (void *)tmpCtx;