1
Fork 0
mirror of https://github.com/naehrwert/scetool.git synced 2025-04-25 06:07:47 +00:00
scetool/aes_omac.h

11 lines
180 B
C
Raw Normal View History

2013-05-10 13:02:25 +02:00
#ifndef _AES_OMAC_H_
#define _AES_OMAC_H_
#include "types.h"
#define AES_OMAC1_DIGEST_SIZE 0x10
void aes_omac1(u8 *digest, u8 *input, u32 length, u8 *key, u32 keybits);
#endif