[python] hex encode/decode 유틸 샘플

By | 3월 4, 2022

환경

  • python 3.9

소스

    """
        평문을 인수로 받아서 hex encoded string을 리턴한다.
    """
    @staticmethod
    def encode_hex(src: str):
        if not src:
            return ''
        return src.encode('utf-8').hex()

    """
        hex encoded string을 인수로 받아서 평문을 리턴한다.
    """
    @staticmethod
    def decode_hex(enc: str):
        if not enc:
            return ''
        return bytearray.decode(bytearray.fromhex(enc))
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments