Searched refs:encr_buf (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_cryptor_private.h | 61 uint8_t encr_buf[AES_BLOCK_SIZE]; member 82 uint8_t encr_buf[AES_BLOCK_SIZE]; member 100 uint8_t encr_buf[AES_BLOCK_SIZE]; member 125 uint8_t encr_buf[AES_BLOCK_SIZE]; member 141 uint8_t encr_buf[AES_BLOCK_SIZE]; member
|
H A D | archive_cryptor.c | 187 r = CCCryptorUpdate(ref, ctx->nonce, AES_BLOCK_SIZE, ctx->encr_buf, in aes_ctr_encrypt_counter() 280 NULL, NULL, 0, (PUCHAR)ctx->encr_buf, AES_BLOCK_SIZE, in aes_ctr_encrypt_counter() 321 ctx->encr_buf) != 0) in aes_ctr_encrypt_counter() 352 aes_encrypt(&ctx->ctx, AES_BLOCK_SIZE, ctx->encr_buf, ctx->nonce); in aes_ctr_encrypt_counter() 357 aes128_encrypt(&ctx->ctx.c128, AES_BLOCK_SIZE, ctx->encr_buf, in aes_ctr_encrypt_counter() 362 aes192_encrypt(&ctx->ctx.c192, AES_BLOCK_SIZE, ctx->encr_buf, in aes_ctr_encrypt_counter() 367 aes256_encrypt(&ctx->ctx.c256, AES_BLOCK_SIZE, ctx->encr_buf, in aes_ctr_encrypt_counter() 416 r = EVP_EncryptUpdate(ctx->ctx, ctx->encr_buf, &outl, ctx->nonce, in aes_ctr_encrypt_counter() 492 uint8_t *const ebuf = ctx->encr_buf; in aes_ctr_update()
|