pqc/crypto_kem/kyber768/avx2/api.h

19 lines
643 B
C
Raw Normal View History

#ifndef PQCLEAN_KYBER768_AVX2_API_H
#define PQCLEAN_KYBER768_AVX2_API_H
#include <stdint.h>
#define PQCLEAN_KYBER768_AVX2_CRYPTO_SECRETKEYBYTES 2400
#define PQCLEAN_KYBER768_AVX2_CRYPTO_PUBLICKEYBYTES 1184
#define PQCLEAN_KYBER768_AVX2_CRYPTO_CIPHERTEXTBYTES 1088
#define PQCLEAN_KYBER768_AVX2_CRYPTO_BYTES 32
#define PQCLEAN_KYBER768_AVX2_CRYPTO_ALGNAME "Kyber768"
int PQCLEAN_KYBER768_AVX2_crypto_kem_keypair(uint8_t *pk, uint8_t *sk);
int PQCLEAN_KYBER768_AVX2_crypto_kem_enc(uint8_t *ct, uint8_t *ss, const uint8_t *pk);
int PQCLEAN_KYBER768_AVX2_crypto_kem_dec(uint8_t *ss, const uint8_t *ct, const uint8_t *sk);
#endif