Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rewrite of base32.py algorithm #9068

Merged
merged 4 commits into from
Sep 24, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
rewrite of base32.py
  • Loading branch information
ChrisO345 authored Sep 20, 2023
commit 597581c0ed4912c72957f7115b2549591b4b9378
53 changes: 29 additions & 24 deletions ciphers/base32.py
Original file line number Diff line number Diff line change
@@ -1,42 +1,47 @@
import base64
"""
Base32 encoding and decoding

https://en.wikipedia.org/wiki/Base32
"""
B32_CHARSET = "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567"

def base32_encode(string: str) -> bytes:

def base32_encode(data: bytes) -> bytes:
"""
Encodes a given string to base32, returning a bytes-like object
>>> base32_encode("Hello World!")
>>> base32_encode(b"Hello World!")
b'JBSWY3DPEBLW64TMMQQQ===='
>>> base32_encode("123456")
>>> base32_encode(b"123456")
b'GEZDGNBVGY======'
>>> base32_encode("some long complex string")
>>> base32_encode(b"some long complex string")
b'ONXW2ZJANRXW4ZZAMNXW24DMMV4CA43UOJUW4ZY='
"""

# encoded the input (we need a bytes like object)
# then, b32encoded the bytes-like object
return base64.b32encode(string.encode("utf-8"))
binary_data = "".join([bin(ord(d))[2:].zfill(8) for d in data.decode("utf-8")])
ChrisO345 marked this conversation as resolved.
Show resolved Hide resolved
binary_data = binary_data.ljust(5 * ((len(binary_data) // 5) + 1), "0")
b32_chunks = map("".join, zip(*[iter(binary_data)] * 5))
b32_result = "".join(j for j in map(lambda _s: B32_CHARSET[int(_s, 2)], b32_chunks))
return bytes(b32_result.ljust(8 * ((len(b32_result) // 8) + 1), "="), "utf-8")


def base32_decode(encoded_bytes: bytes) -> str:
def base32_decode(data: bytes) -> bytes:
"""
Decodes a given bytes-like object to a string, returning a string
>>> base32_decode(b'JBSWY3DPEBLW64TMMQQQ====')
'Hello World!'
b'Hello World!'
>>> base32_decode(b'GEZDGNBVGY======')
'123456'
b'123456'
>>> base32_decode(b'ONXW2ZJANRXW4ZZAMNXW24DMMV4CA43UOJUW4ZY=')
'some long complex string'
b'some long complex string'
"""

# decode the bytes from base32
# then, decode the bytes-like object to return as a string
return base64.b32decode(encoded_bytes).decode("utf-8")
binary_chunks = "".join(
map(
lambda _d: bin(B32_CHARSET.index(_d))[2:].zfill(5),
data.decode("utf-8").strip("="),
)
)
binary_data = list(map("".join, zip(*[iter(binary_chunks)] * 8)))
return bytes("".join(list(map(lambda _d: chr(int(_d, 2)), binary_data))), "utf-8")


if __name__ == "__main__":
test = "Hello World!"
encoded = base32_encode(test)
print(encoded)
import doctest

decoded = base32_decode(encoded)
print(decoded)
doctest.testmod()