You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/crypto/ntruprime-20171206/crypto_kem/ntrulpr4591761/avx/small.h

28 lines
845 B
C

#ifndef small_h
#define small_h
#include "crypto_int8.h"
#include "crypto_int32.h"
typedef crypto_int8 small;
#define small_encode crypto_kem_ntrulpr4591761_avx_small_encode
extern void small_encode(unsigned char *,const small *);
#define small_decode crypto_kem_ntrulpr4591761_avx_small_decode
extern void small_decode(small *,const unsigned char *);
#define small_random32 crypto_kem_ntrulpr4591761_avx_small_random32
extern crypto_int32 small_random32(void);
#define small_random crypto_kem_ntrulpr4591761_avx_small_random
extern void small_random(small *);
#define small_seeded_weightw crypto_kem_ntrulpr4591761_avx_small_seeded_weightw
extern void small_seeded_weightw(small *,const unsigned char *);
#define small_random_weightw crypto_kem_ntrulpr4591761_avx_small_random_weightw
extern void small_random_weightw(small *);
#endif