Browse Source

don't initialize GOST explicitly

pull/9/head
orignal 7 years ago
parent
commit
9e25556f8f
  1. 2
      i2pd
  2. 4
      keygen.cpp

2
i2pd

@ -1 +1 @@ @@ -1 +1 @@
Subproject commit 1ce6ad5ccc812599728e0a6f07767e52b48ecbee
Subproject commit a8196d1f33d15b0bc4c992e4ea1dab1aef4c84a7

4
keygen.cpp

@ -18,8 +18,6 @@ int main (int argc, char * argv[]) @@ -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[]) @@ -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;

Loading…
Cancel
Save