mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 07:59:01 +00:00
22 lines
372 B
C
22 lines
372 B
C
|
#ifndef INDCPA_H
|
||
|
#define INDCPA_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void PQCLEAN_KYBER768_AVX2_indcpa_keypair(
|
||
|
uint8_t *pk,
|
||
|
uint8_t *sk);
|
||
|
|
||
|
void PQCLEAN_KYBER768_AVX2_indcpa_enc(
|
||
|
uint8_t *c,
|
||
|
const uint8_t *m,
|
||
|
const uint8_t *pk,
|
||
|
const uint8_t *coins);
|
||
|
|
||
|
void PQCLEAN_KYBER768_AVX2_indcpa_dec(
|
||
|
uint8_t *m,
|
||
|
const uint8_t *c,
|
||
|
const uint8_t *sk);
|
||
|
|
||
|
#endif
|