xref: /openbsd/lib/libcrypto/bn/bn_prime.h (revision 4bdff4be)
1 /* $OpenBSD: bn_prime.h,v 1.9 2022/11/10 10:24:50 tb Exp $ */
2 /*
3  * Public domain.
4  */
5 
6 #include <stdint.h>
7 
8 __BEGIN_HIDDEN_DECLS
9 
10 #define NUMPRIMES 2048
11 
12 extern const uint16_t primes[NUMPRIMES];
13 
14 __END_HIDDEN_DECLS
15