comments update

This commit is contained in:
Xevion
2019-07-24 22:00:49 -05:00
parent c10c2e28e4
commit d50b17570d
3 changed files with 20 additions and 4 deletions

View File

@@ -9,7 +9,6 @@ class Cipher(object):
self.key = list(abc)
shuffle(self.key)
self.key = ''.join(self.key)
key_values = [self.keyvalue(i) for i in range(len(self.key))]
self.key_alphabets = [(abc[index:] + abc[: index]) for index in key_values]