don't init GOST explicitly

This commit is contained in:
orignal 2017-03-10 11:56:07 -05:00 committed by GitHub
parent 23d95f89f6
commit 37b760be0c

View file

@ -13,7 +13,6 @@ int main (int argc, char * argv[])
} }
i2p::crypto::InitCrypto (false); i2p::crypto::InitCrypto (false);
i2p::crypto::InitGost ();
i2p::data::PrivateKeys keys; i2p::data::PrivateKeys keys;
std::ifstream s(argv[1], std::ifstream::binary); std::ifstream s(argv[1], std::ifstream::binary);
@ -45,7 +44,6 @@ int main (int argc, char * argv[])
delete[] buf; delete[] buf;
} }
i2p::crypto::TerminateGost ();
i2p::crypto::TerminateCrypto (); i2p::crypto::TerminateCrypto ();
return 0; return 0;