Output formatting

This commit is contained in:
acetone 2021-05-16 14:40:33 -04:00 committed by GitHub
parent 95da1e3c30
commit 38f85d3cad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -72,6 +72,7 @@ int main(int argc, char * argv[])
std::cout << "\nPrivateKey: ";
for (int i = 0; b64Private[i] != 0; ++i)
std::cout << b64Private[i];
std::cout << std::endl;
return 0;
}