https://github.com/mupq/pqm4
Raw File
Tip revision: ae06d3dfc39e62f24a6dbb62d8e15a198b536d29 authored by Matthias J. Kannwischer on 31 January 2019, 10:15:17 UTC
Add kyber512 and kyber1024 (#35)
Tip revision: ae06d3d
rijndael.h
#ifndef RIJNDAEL_H
#define RIJNDAEL_H

#include <stdint.h>

void AES_128_keyschedule(const uint8_t *key, uint8_t *rk);
void AES_128_encrypt(const uint8_t *rk, const uint8_t *in, uint8_t *out);

#endif
back to top