Fix build error in salsa20.cpp
This commit is contained in:
parent
aa6882b3b7
commit
55e7a073cf
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@ extern "C" {
|
|||
|
||||
namespace fc
|
||||
{
|
||||
static bool salsa20_init = [=]() -> bool { ECRYPT_init(); return true; }();
|
||||
static bool salsa20_init = []() -> bool { ECRYPT_init(); return true; }();
|
||||
|
||||
void salsa20_encrypt( const fc::sha256& key, uint64_t iv, const char* plain, char* cipher, uint64_t len )
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue