Skip to content

Commit

Permalink
Make ecmult static precomputation default
Browse files Browse the repository at this point in the history
  • Loading branch information
sipa committed Jul 16, 2015
1 parent 166b32f commit a83bb48
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -20,7 +20,7 @@ env:
- FIELD=32bit ENDOMORPHISM=yes
- BIGNUM=no
- BIGNUM=no ENDOMORPHISM=yes
- BIGNUM=no STATICPRECOMPUTATION=yes
- BIGNUM=no STATICPRECOMPUTATION=no
- BUILD=distcheck
- EXTRAFLAGS=CFLAGS=-DDETERMINISTIC
matrix:
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Expand Up @@ -98,9 +98,9 @@ AC_ARG_ENABLE(endomorphism,
[use_endomorphism=no])

AC_ARG_ENABLE(ecmult_static_precomputation,
AS_HELP_STRING([--enable-ecmult-static-precomputation],[enable precomputed ecmult table for signing (default is no)]),
AS_HELP_STRING([--enable-ecmult-static-precomputation],[enable precomputed ecmult table for signing (default is yes)]),
[use_ecmult_static_precomputation=$enableval],
[use_ecmult_static_precomputation=no])
[use_ecmult_static_precomputation=yes])

AC_ARG_WITH([field], [AS_HELP_STRING([--with-field=64bit|32bit|auto],
[Specify Field Implementation. Default is auto])],[req_field=$withval], [req_field=auto])
Expand Down

0 comments on commit a83bb48

Please sign in to comment.