avr-crypto-lib/noekeon/noekeon_cbc_enc.h

10 lines
200 B
C
Raw Normal View History

2010-09-25 12:11:44 +00:00
#ifndef NOEKEON_CBC_ENC_H_
#define NOEKEON_CBC_ENC_H_
#include <stdint.h>
#include "noekeon.h"
2010-09-25 12:11:44 +00:00
void noekeon_cbc_enc(void *buffer, uint8_t block_cnt, const void *key);
2010-09-25 12:11:44 +00:00
#endif /*NOEKEON_CBC_ENC_H_*/