We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce9efb0 commit 0b770cfCopy full SHA for 0b770cf
.gitignore
@@ -4,3 +4,6 @@ Cargo.lock
4
#IntelliJ project files
5
.idea
6
*.iml
7
+
8
+CMakeLists.txt
9
+cmake-build-debug
build.rs
@@ -52,7 +52,8 @@ fn main() {
52
.define("USE_NUM_NONE", Some("1"))
53
.define("USE_FIELD_INV_BUILTIN", Some("1"))
54
.define("USE_SCALAR_INV_BUILTIN", Some("1"))
55
- .define("ENABLE_MODULE_ECDH", Some("1"));
+ .define("ENABLE_MODULE_ECDH", Some("1"))
56
+ .define("ECMULT_WINDOW_SIZE", Some("15")); // This is the default in the configure file (`auto`)
57
58
#[cfg(feature = "endomorphism")]
59
base_config.define("USE_ENDOMORPHISM", Some("1"));
0 commit comments