summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2021-03-09 12:15:27 +1000
committerShane Lontis <shane.lontis@oracle.com>2021-03-18 17:52:37 +1000
commitfc27fca84a6eebad5f0b6d4d5b6ebcf71e1307bd (patch)
tree77164e9cc174cb24c39ba6b462d8cee096b1f3ec /include
parentff0266eddc34e3f00494651e76bf46e6501dfc0b (diff)
Add ossl_bn_group symbols
Partial fix for #12964 Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14473)
Diffstat (limited to 'include')
-rw-r--r--include/crypto/bn_srp.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/crypto/bn_srp.h b/include/crypto/bn_srp.h
index 897618cd9e..805f4a4343 100644
--- a/include/crypto/bn_srp.h
+++ b/include/crypto/bn_srp.h
@@ -9,24 +9,24 @@
#ifndef OPENSSL_NO_SRP
-extern const BIGNUM bn_group_1024;
+extern const BIGNUM ossl_bn_group_1024;
-extern const BIGNUM bn_group_1536;
+extern const BIGNUM ossl_bn_group_1536;
-extern const BIGNUM bn_group_2048;
+extern const BIGNUM ossl_bn_group_2048;
-extern const BIGNUM bn_group_3072;
+extern const BIGNUM ossl_bn_group_3072;
-extern const BIGNUM bn_group_4096;
+extern const BIGNUM ossl_bn_group_4096;
-extern const BIGNUM bn_group_6144;
+extern const BIGNUM ossl_bn_group_6144;
-extern const BIGNUM bn_group_8192;
+extern const BIGNUM ossl_bn_group_8192;
-extern const BIGNUM bn_generator_19;
+extern const BIGNUM ossl_bn_generator_19;
-extern const BIGNUM bn_generator_5;
+extern const BIGNUM ossl_bn_generator_5;
-extern const BIGNUM bn_generator_2;
+extern const BIGNUM ossl_bn_generator_2;
#endif