Skip to content

Commit

Permalink
change
Browse files Browse the repository at this point in the history
  • Loading branch information
s0mewha7 committed Dec 1, 2023
1 parent 8b011f2 commit 5c400d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 2 additions & 0 deletions let5-JacquesFresco/bruteforce.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#include "function.h"

const std::string charset = "1234567890AaBbCcDdEeFfHhGgXxYyZz";

void generatePasswords(const std::string &charset, int length, std::string currentPassword) {
if (length == 0) {
std::cout << currentPassword << std::endl;
Expand Down
1 change: 0 additions & 1 deletion let5-JacquesFresco/function.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
#include <fstream>
#include <string>

std::string charset = "1234567890AaBbCcDdEeFfHhGgXxYyZz";
const size_t passwordLength = 5;

void generated_password();
Expand Down

0 comments on commit 5c400d4

Please sign in to comment.