pqc/crypto_kem/kyber512/avx2/api.h

20 lines
642 B
C
Raw Normal View History

#ifndef PQCLEAN_KYBER512_AVX2_API_H
#define PQCLEAN_KYBER512_AVX2_API_H
#include <stdint.h>
#define PQCLEAN_KYBER512_AVX2_CRYPTO_SECRETKEYBYTES 1632
#define PQCLEAN_KYBER512_AVX2_CRYPTO_PUBLICKEYBYTES 800
#define PQCLEAN_KYBER512_AVX2_CRYPTO_CIPHERTEXTBYTES 736
#define PQCLEAN_KYBER512_AVX2_CRYPTO_BYTES 32
#define PQCLEAN_KYBER512_AVX2_CRYPTO_ALGNAME "Kyber512"
int PQCLEAN_KYBER512_AVX2_crypto_kem_keypair(uint8_t *pk, uint8_t *sk);
int PQCLEAN_KYBER512_AVX2_crypto_kem_enc(uint8_t *ct, uint8_t *ss, const uint8_t *pk);
int PQCLEAN_KYBER512_AVX2_crypto_kem_dec(uint8_t *ss, const uint8_t *ct, const uint8_t *sk);
#endif