1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 16:08:59 +00:00
pqcrypto/crypto_kem/hqc-192/avx2/api.h

26 lines
1002 B
C
Raw Normal View History

2020-09-07 19:23:34 +01:00
#ifndef PQCLEAN_HQC192_AVX2_API_H
#define PQCLEAN_HQC192_AVX2_API_H
/**
* @file api.h
* @brief NIST KEM API used by the HQC_KEM IND-CCA2 scheme
*/
#define PQCLEAN_HQC192_AVX2_CRYPTO_ALGNAME "HQC-192"
#define PQCLEAN_HQC192_AVX2_CRYPTO_SECRETKEYBYTES 5730
#define PQCLEAN_HQC192_AVX2_CRYPTO_PUBLICKEYBYTES 5690
#define PQCLEAN_HQC192_AVX2_CRYPTO_BYTES 64
#define PQCLEAN_HQC192_AVX2_CRYPTO_CIPHERTEXTBYTES 11364
// As a technicality, the public key is appended to the secret key in order to respect the NIST API.
// Without this constraint, PQCLEAN_HQC192_AVX2_CRYPTO_SECRETKEYBYTES would be defined as 32
int PQCLEAN_HQC192_AVX2_crypto_kem_keypair(unsigned char *pk, unsigned char *sk);
int PQCLEAN_HQC192_AVX2_crypto_kem_enc(unsigned char *ct, unsigned char *ss, const unsigned char *pk);
int PQCLEAN_HQC192_AVX2_crypto_kem_dec(unsigned char *ss, const unsigned char *ct, const unsigned char *sk);
#endif