res = apr_crypto_block_encrypt_init(driver, r->pool, f, key, &iv, &block,
&blockSize);
#else
- res = apr_crypto_block_encrypt_init(&block, &iv, key,
- &blockSize, f, r->pool);
+ res = apr_crypto_block_encrypt_init(&block, &iv, key, &blockSize, r->pool);
#endif
if (APR_SUCCESS != res) {
ap_log_rerror(APLOG_MARK, APLOG_ERR, res, r, LOG_PREFIX
res = apr_crypto_block_encrypt(driver, block, &encrypt,
&encryptlen, (unsigned char *)in, strlen(in));
#else
- res = apr_crypto_block_encrypt(&encrypt,
- &encryptlen, (unsigned char *)in, strlen(in), f, block);
+ res = apr_crypto_block_encrypt(&encrypt, &encryptlen, (unsigned char *)in,
+ strlen(in), block);
#endif
if (APR_SUCCESS != res) {
ap_log_rerror(APLOG_MARK, APLOG_ERR, res, r, LOG_PREFIX
res = apr_crypto_block_encrypt_finish(driver, block, encrypt + encryptlen,
&tlen);
#else
- res = apr_crypto_block_encrypt_finish(encrypt + encryptlen,
- &tlen, f, block);
+ res = apr_crypto_block_encrypt_finish(encrypt + encryptlen, &tlen, block);
#endif
if (APR_SUCCESS != res) {
ap_log_rerror(APLOG_MARK, APLOG_ERR, res, r, LOG_PREFIX
&blockSize);
#else
res = apr_crypto_block_decrypt_init(&block, &blockSize, (unsigned char *)decoded, key,
- f, r->pool);
+ r->pool);
#endif
if (APR_SUCCESS != res) {
ap_log_rerror(APLOG_MARK, APLOG_ERR, res, r, LOG_PREFIX
res = apr_crypto_block_decrypt(driver, block, &decrypted,
&decryptedlen, (unsigned char *)decoded, decodedlen);
#else
- res = apr_crypto_block_decrypt(&decrypted,
- &decryptedlen, (unsigned char *)decoded, decodedlen, f, block);
+ res = apr_crypto_block_decrypt(&decrypted, &decryptedlen,
+ (unsigned char *)decoded, decodedlen, block);
#endif
if (res) {
ap_log_rerror(APLOG_MARK, APLOG_ERR, res, r, LOG_PREFIX
res = apr_crypto_block_decrypt_finish(driver, block, decrypted + decryptedlen,
&tlen);
#else
- res = apr_crypto_block_decrypt_finish(decrypted + decryptedlen,
- &tlen, f, block);
+ res = apr_crypto_block_decrypt_finish(decrypted + decryptedlen, &tlen, block);
#endif
if (APR_SUCCESS != res) {
ap_log_rerror(APLOG_MARK, APLOG_ERR, res, r, LOG_PREFIX