mirror of
https://github.com/PurpleI2P/i2pd-tools.git
synced 2024-12-06 19:26:18 +01:00
don't initialize GOST explicitly
This commit is contained in:
+1
-1
Submodule i2pd updated: 1ce6ad5ccc...a8196d1f33
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user