1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 16:08:59 +00:00
pqcrypto/crypto_kem/kyber768/avx2/api.h
Thom Wiggers f4bd312180 Adds AVX2 variants of Kyber512, Kyber768, Kyber1024 (#225)
* Integrate Kyber-AVX2 into PQClean

* Fix types and formatting in Kyber

* Workaround a valgrind crash

* Remove comment in shuffle.s

* Remove some extraneous truncations

* fixup! Fix types and formatting in Kyber
2019-09-10 11:45:01 +02:00

20 lines
644 B
C

#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