You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the vdf crate is hard-coded to use GMP as its bignum library. There are many reasons one might want to use an alternative:
Licensing
GMP is LGPL3+/GPL2+, which is often undesirable.
Hardware acceleration
GMP is the fastest software bignum library extant, but it is still far slower than purpose-built accelerator hardware. A pluggable backend could enable such hardware to be used.
Portability
GMP is written in C and assembler, and uses autotools to build. This is especially annoying on Windows.
The text was updated successfully, but these errors were encountered:
Currently, the
vdf
crate is hard-coded to use GMP as its bignum library. There are many reasons one might want to use an alternative:The text was updated successfully, but these errors were encountered: