don't initialize GOST explicitly

This commit is contained in:
orignal
2017-03-13 16:16:11 -04:00
parent 37b760be0c
commit 9e25556f8f
2 changed files with 1 additions and 5 deletions
+1 -1
Submodule i2pd updated: 1ce6ad5ccc...a8196d1f33
-4
View File
@@ -18,8 +18,6 @@ int main (int argc, char * argv[])
std::string str(argv[2]);
type = NameToSigType(str);
}
if (type == i2p::data::SIGNING_KEY_TYPE_GOSTR3410_A_GOSTR3411)
i2p::crypto::InitGost ();
auto keys = i2p::data::PrivateKeys::CreateRandomKeys (type);
std::ofstream f (argv[1], std::ofstream::binary | std::ofstream::out);
if (f)
@@ -34,8 +32,6 @@ int main (int argc, char * argv[])
else
std::cout << "Can't create file " << argv[1] << std::endl;
if (type == i2p::data::SIGNING_KEY_TYPE_GOSTR3410_A_GOSTR3411)
i2p::crypto::TerminateGost ();
i2p::crypto::TerminateCrypto ();
return 0;