21 lines
390 B
C
21 lines
390 B
C
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
#include <di/encryption.h>
|
|
|
|
/** @todo get rid of static hmac key */
|
|
static const uint8_t di_enc_hmackey[] = { 0xa2, 0x55, 0xfe, 0x8f };
|
|
|
|
/** @todo get rid of static aes key */
|
|
static const uint8_t di_enc_aeskey[] = {
|
|
0xbc, 0xb6, 0xe6, 0x05,
|
|
0xf7, 0x7f, 0xc3, 0x4b,
|
|
0xcd, 0x40, 0x0d, 0x23,
|
|
0x48, 0x30, 0x82, 0x6a
|
|
};
|
|
|
|
int main(void)
|
|
{
|
|
return 0;
|
|
}
|