Skip to content

Commit

Permalink
REleasing version 0.0.9. Fixed Symmetric package import
Browse files Browse the repository at this point in the history
  • Loading branch information
0awawa0 committed Apr 25, 2022
1 parent 7733bfb commit 46f2997
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ptCrypt/Symmetric/AES.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def __init__(self, key: bytes):
elif len(key) == 24: self._rounds = 12
elif len(key) == 32: self._rounds = 14
else:
raise Cipher.UnsupportedKeyLengthException("Passed key with wrong length. AES standard only supports keys of sizes 4, 6 or 8 bytes")
raise Cipher.UnsupportedKeyLengthException("Passed key with wrong length. AES standard only supports keys of sizes 4128 , 6 or 8 bytes")

self._key = key
self._roundKeys = AES.keyExpansion(self._key)
Expand Down
Empty file.
Empty file.
Empty file added ptCrypt/Symmetric/__init__.py
Empty file.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
setup(
name = 'ptCrypt',
packages = find_packages(),
version = '0.0.8',
version = '0.0.9',
description = 'Cryptographic and cryptography related algorithms implemented with pure Python',
author = 'awawa',
author_email = '[email protected]',
url = 'https://github.com/0awawa0/ptCrypt',
download_url = 'https://github.com/0awawa0/ptCrypt/archive/refs/tags/0.0.8.tar.gz',
download_url = 'https://github.com/0awawa0/ptCrypt/archive/refs/tags/0.0.9.tar.gz',
keywords = ['Cryptography'],
classifiers = [],
)

0 comments on commit 46f2997

Please sign in to comment.