mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 17:11:23 +00:00
11 lines
225 B
C
11 lines
225 B
C
|
#ifndef _AES_OMAC_H_
|
||
|
#define _AES_OMAC_H_
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
#define AES_OMAC1_DIGEST_SIZE 0x10
|
||
|
|
||
|
void aes_omac1(scetool::u8 *digest, scetool::u8 *input, scetool::u32 length, scetool::u8 *key, scetool::u32 keybits);
|
||
|
|
||
|
#endif
|