Lines Matching defs:block
128 apr_crypto_block_t *block = NULL;
178 res = apr_crypto_block_encrypt_init(&block, &iv, key, &blockSize, r->pool);
187 strlen(in), block);
193 res = apr_crypto_block_encrypt_finish(encrypt + encryptlen, &tlen, block);
230 apr_crypto_block_t *block = NULL;
289 /* bypass the salt at the start of the decoded block */
293 res = apr_crypto_block_decrypt_init(&block, &blockSize, (unsigned char *)slider, key,
301 /* bypass the iv at the start of the decoded block */
307 (unsigned char *)slider, len, block);
315 res = apr_crypto_block_decrypt_finish(decrypted + decryptedlen, &tlen, block);