Commit 0a804230 authored by Benjamin REED's avatar Benjamin REED

working build. moved to a new git bc i caused chaos with the other one due to stupidity

parent 94370b7e
......@@ -172,18 +172,12 @@ class State:
file.close()
def caesar_cipher(inp, offset):
pass
def generate_password(length, charset):
s = []
for i in range(0, length):
s.append(random.choice(list(charset)))
return ''.join(s)
def aes_256(inp):
pass
def handle_args(db: str, password: str):
state = State(db, password)
return state
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment