mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 07:59:01 +00:00
19 lines
646 B
C
19 lines
646 B
C
#ifndef PQCLEAN_SABER_CLEAN_API_H
|
|
#define PQCLEAN_SABER_CLEAN_API_H
|
|
|
|
|
|
#define PQCLEAN_SABER_CLEAN_CRYPTO_ALGNAME "Saber"
|
|
#define PQCLEAN_SABER_CLEAN_CRYPTO_BYTES 32
|
|
#define PQCLEAN_SABER_CLEAN_CRYPTO_CIPHERTEXTBYTES 1088
|
|
#define PQCLEAN_SABER_CLEAN_CRYPTO_PUBLICKEYBYTES 992
|
|
#define PQCLEAN_SABER_CLEAN_CRYPTO_SECRETKEYBYTES 2304
|
|
|
|
int PQCLEAN_SABER_CLEAN_crypto_kem_keypair(unsigned char *pk, unsigned char *sk);
|
|
|
|
int PQCLEAN_SABER_CLEAN_crypto_kem_enc(unsigned char *ct, unsigned char *k, const unsigned char *pk);
|
|
|
|
int PQCLEAN_SABER_CLEAN_crypto_kem_dec(unsigned char *k, const unsigned char *ct, const unsigned char *sk);
|
|
|
|
|
|
#endif /* api_h */
|