1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 16:08:59 +00:00
pqcrypto/crypto_kem/kyber768-90s/avx2/indcpa.h

22 lines
381 B
C
Raw Normal View History

2019-09-17 13:02:01 +01:00
#ifndef INDCPA_H
#define INDCPA_H
#include <stdint.h>
void PQCLEAN_KYBER76890S_AVX2_indcpa_keypair(
uint8_t *pk,
uint8_t *sk);
void PQCLEAN_KYBER76890S_AVX2_indcpa_enc(
uint8_t *c,
const uint8_t *m,
const uint8_t *pk,
const uint8_t *coins);
void PQCLEAN_KYBER76890S_AVX2_indcpa_dec(
uint8_t *m,
const uint8_t *c,
const uint8_t *sk);
#endif