noekeon_cbc_enc.h 207 B

123456789
  1. #ifndef NOEKEON_CBC_ENC_H_
  2. #define NOEKEON_CBC_ENC_H_
  3. #include <stdint.h>
  4. #include <crypto/noekeon.h>
  5. void noekeon_cbc_enc(void* buffer, uint8_t block_cnt, const void* key);
  6. #endif /*NOEKEON_CBC_ENC_H_*/