mtcute/packages/wasm/lib/crypto/ctr256.h

6 lines
151 B
C
Raw Normal View History

2023-11-04 06:44:18 +03:00
#ifndef CTR256_H
#define CTR256_H
uint8_t *ctr256(const uint8_t in[], uint32_t length, const uint8_t key[32], uint8_t iv[16], uint8_t *state);
#endif