pqc/crypto_kem/newhope512cca/clean/api.h

16 lines
737 B
C
Raw Normal View History

2019-05-08 16:06:55 +01:00
#ifndef PQCLEAN_NEWHOPE512CCA_CLEAN_API_H
#define PQCLEAN_NEWHOPE512CCA_CLEAN_API_H
#define PQCLEAN_NEWHOPE512CCA_CLEAN_CRYPTO_SECRETKEYBYTES 1888
#define PQCLEAN_NEWHOPE512CCA_CLEAN_CRYPTO_PUBLICKEYBYTES 928
#define PQCLEAN_NEWHOPE512CCA_CLEAN_CRYPTO_CIPHERTEXTBYTES 1120
#define PQCLEAN_NEWHOPE512CCA_CLEAN_CRYPTO_BYTES 32
#define PQCLEAN_NEWHOPE512CCA_CLEAN_CRYPTO_ALGNAME "NewHope512-CCAKEM"
int PQCLEAN_NEWHOPE512CCA_CLEAN_crypto_kem_keypair(unsigned char *pk, unsigned char *sk);
int PQCLEAN_NEWHOPE512CCA_CLEAN_crypto_kem_enc(unsigned char *ct, unsigned char *ss, const unsigned char *pk);
int PQCLEAN_NEWHOPE512CCA_CLEAN_crypto_kem_dec(unsigned char *ss, const unsigned char *ct, const unsigned char *sk);
#endif