mirror of
https://github.com/bol-van/zapret2.git
synced 2026-03-21 16:55:49 +00:00
8 lines
176 B
C
8 lines
176 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include "aes.h"
|
|
|
|
// this function rewrites buf
|
|
void aes_ctr_xcrypt_buffer(aes_context *ctx, const uint8_t *iv, uint8_t *buf, size_t length);
|