pqc/crypto_kem/kyber512/clean/api.h
John M. Schanck 688ff2fe50 Round 3 Kyber
2020-11-26 21:42:35 -05:00

19 lines
651 B
C

#ifndef PQCLEAN_KYBER512_CLEAN_API_H
#define PQCLEAN_KYBER512_CLEAN_API_H
#include <stdint.h>
#define PQCLEAN_KYBER512_CLEAN_CRYPTO_SECRETKEYBYTES 1632
#define PQCLEAN_KYBER512_CLEAN_CRYPTO_PUBLICKEYBYTES 800
#define PQCLEAN_KYBER512_CLEAN_CRYPTO_CIPHERTEXTBYTES 768
#define PQCLEAN_KYBER512_CLEAN_CRYPTO_BYTES 32
#define PQCLEAN_KYBER512_CLEAN_CRYPTO_ALGNAME "Kyber512"
int PQCLEAN_KYBER512_CLEAN_crypto_kem_keypair(uint8_t *pk, uint8_t *sk);
int PQCLEAN_KYBER512_CLEAN_crypto_kem_enc(uint8_t *ct, uint8_t *ss, const uint8_t *pk);
int PQCLEAN_KYBER512_CLEAN_crypto_kem_dec(uint8_t *ss, const uint8_t *ct, const uint8_t *sk);
#endif