unlicense and spacing perfectionism

This commit is contained in:
fifteenthcommotion 2019-05-12 02:18:03 -07:00
parent 5a3c730097
commit db85a11194
3 changed files with 24 additions and 6 deletions

View file

@ -40,7 +40,6 @@ int main(int argc, char **argv) {
unsigned int runs = 0;
int where;
if (argc != 2) {
fprintf(stderr, "usage: ./yggdrasil-brute-multi-curve25519 <seconds>\n");
return 1;
@ -88,7 +87,6 @@ int main(int argc, char **argv) {
}
} while (time(NULL) - starttime < requestedtime || runs < NUMKEYS);
fprintf(stderr, "!! Secret key is seed concatenated with public !!\n");
fprintf(stderr, "---hash--- ------------------------------seed------------------------------ -----------------------------public-----------------------------\n");
for (i = 0; i < NUMKEYS; ++i) {
@ -106,4 +104,3 @@ int main(int argc, char **argv) {
return 0;
}