1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-22 23:48:58 +00:00
pqcrypto/crypto_kem/kyber1024/avx2/api.h
2021-03-24 21:02:49 +00:00

19 lines
654 B
C

#ifndef PQCLEAN_KYBER1024_AVX2_API_H
#define PQCLEAN_KYBER1024_AVX2_API_H
#include <stdint.h>
#define PQCLEAN_KYBER1024_AVX2_CRYPTO_SECRETKEYBYTES 3168
#define PQCLEAN_KYBER1024_AVX2_CRYPTO_PUBLICKEYBYTES 1568
#define PQCLEAN_KYBER1024_AVX2_CRYPTO_CIPHERTEXTBYTES 1568
#define PQCLEAN_KYBER1024_AVX2_CRYPTO_BYTES 32
#define PQCLEAN_KYBER1024_AVX2_CRYPTO_ALGNAME "Kyber1024"
int PQCLEAN_KYBER1024_AVX2_crypto_kem_keypair(uint8_t *pk, uint8_t *sk);
int PQCLEAN_KYBER1024_AVX2_crypto_kem_enc(uint8_t *ct, uint8_t *ss, const uint8_t *pk);
int PQCLEAN_KYBER1024_AVX2_crypto_kem_dec(uint8_t *ss, const uint8_t *ct, const uint8_t *sk);
#endif