mirror of
https://github.com/PurpleI2P/i2pd-tools.git
synced 2024-12-06 19:26:18 +01:00
fixed #74
This commit is contained in:
+1
-1
Submodule i2pd updated: f22eaa6db5...3c07665479
+2
-2
@@ -38,7 +38,7 @@ int main(int argc, char * argv[])
|
||||
{
|
||||
if (argc > 1)
|
||||
{
|
||||
std::string arg = static_cast<std::string>(argv[1]);
|
||||
std::string arg (argv[1]);
|
||||
if (arg == "--usage" || arg == "--help" || arg == "-h")
|
||||
{
|
||||
std::cout << "The x25519 keys are used for authentication with an encrypted LeaseSet.\n"
|
||||
@@ -57,7 +57,7 @@ int main(int argc, char * argv[])
|
||||
|
||||
BoxKeys newKeys = getKeyPair();
|
||||
|
||||
size_t len_out = 50;
|
||||
const size_t len_out = 50;
|
||||
char b64Public[len_out] = {0};
|
||||
char b64Private[len_out] = {0};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user