xref: /freebsd/crypto/openssl/include/crypto/bn_srp.h (revision 17f01e9963948a18f55eb97173123702c5dae671)
1*17f01e99SJung-uk Kim /*
2*17f01e99SJung-uk Kim  * Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved.
3*17f01e99SJung-uk Kim  *
4*17f01e99SJung-uk Kim  * Licensed under the OpenSSL license (the "License").  You may not use
5*17f01e99SJung-uk Kim  * this file except in compliance with the License.  You can obtain a copy
6*17f01e99SJung-uk Kim  * in the file LICENSE in the source distribution or at
7*17f01e99SJung-uk Kim  * https://www.openssl.org/source/license.html
8*17f01e99SJung-uk Kim  */
9*17f01e99SJung-uk Kim 
10*17f01e99SJung-uk Kim #ifndef OPENSSL_NO_SRP
11*17f01e99SJung-uk Kim 
12*17f01e99SJung-uk Kim extern const BIGNUM bn_group_1024;
13*17f01e99SJung-uk Kim 
14*17f01e99SJung-uk Kim extern const BIGNUM bn_group_1536;
15*17f01e99SJung-uk Kim 
16*17f01e99SJung-uk Kim extern const BIGNUM bn_group_2048;
17*17f01e99SJung-uk Kim 
18*17f01e99SJung-uk Kim extern const BIGNUM bn_group_3072;
19*17f01e99SJung-uk Kim 
20*17f01e99SJung-uk Kim extern const BIGNUM bn_group_4096;
21*17f01e99SJung-uk Kim 
22*17f01e99SJung-uk Kim extern const BIGNUM bn_group_6144;
23*17f01e99SJung-uk Kim 
24*17f01e99SJung-uk Kim extern const BIGNUM bn_group_8192;
25*17f01e99SJung-uk Kim 
26*17f01e99SJung-uk Kim extern const BIGNUM bn_generator_19;
27*17f01e99SJung-uk Kim 
28*17f01e99SJung-uk Kim extern const BIGNUM bn_generator_5;
29*17f01e99SJung-uk Kim 
30*17f01e99SJung-uk Kim extern const BIGNUM bn_generator_2;
31*17f01e99SJung-uk Kim 
32*17f01e99SJung-uk Kim #endif
33