Base 16

import base64


def base16_encode(inp: str) -> bytes:
    """
    Encodes a given utf-8 string into base-16.

    >>> base16_encode('Hello World!')
    b'48656C6C6F20576F726C6421'
    >>> base16_encode('HELLO WORLD!')
    b'48454C4C4F20574F524C4421'
    >>> base16_encode('')
    b''
    """
    # encode the input into a bytes-like object and then encode b16encode that
    return base64.b16encode(inp.encode("utf-8"))


def base16_decode(b16encoded: bytes) -> str:
    """
    Decodes from base-16 to a utf-8 string.

    >>> base16_decode(b'48656C6C6F20576F726C6421')
    'Hello World!'
    >>> base16_decode(b'48454C4C4F20574F524C4421')
    'HELLO WORLD!'
    >>> base16_decode(b'')
    ''
    """
    # b16decode the input into bytes and decode that into a human readable string
    return base64.b16decode(b16encoded).decode("utf-8")


if __name__ == "__main__":
    import doctest

    doctest.testmod()
Algerlogo

Β© Alger 2022

About us

We are a group of programmers helping each other build new things, whether it be writing complex encryption programs, or simple ciphers. Our goal is to work together to document and model beautiful, helpful and interesting algorithms using code. We are an open-source community - anyone can contribute. We check each other's work, communicate and collaborate to solve problems. We strive to be welcoming, respectful, yet make sure that our code follows the latest programming guidelines.