gpt4 book ai didi

python - 将 base64 编码的字符串转换为十六进制 int

转载 作者:太空宇宙 更新时间:2023-11-04 00:21:28 26 4
gpt4 key购买 nike

我有一个 base64 编码的随机数作为 24 个字符的字符串:

nonce = "azRzAi5rm1ry/l0drnz1vw=="

我想要一个 16 字节的整数:

0x6b3473022e6b9b5af2fe5d1dae7cf5bf

我最好的尝试:

from base64 import b64decode

b64decode(nonce)

>> b'k4s\x02.k\x9bZ\xf2\xfe]\x1d\xae|\xf5\xbf'

如何从 base64 字符串中获取整数?

最佳答案

要从字符串中获取一个整数,你可以这样做:

代码:

# Python 3
decoded = int.from_bytes(b64decode(nonce), 'big')

# Python 2
decoded = int(b64decode(nonce).encode('hex'), 16)

测试代码:

nonce = "azRzAi5rm1ry/l0drnz1vw=="
nonce_hex = 0x6b3473022e6b9b5af2fe5d1dae7cf5bf
from base64 import b64decode

decoded = int.from_bytes(b64decode(nonce), 'big')

# PY 2
# decoded = int(b64decode(nonce).encode('hex'), 16)

assert decoded == nonce_hex
print(hex(decoded))

结果:

0x6b3473022e6b9b5af2fe5d1dae7cf5bf

关于python - 将 base64 编码的字符串转换为十六进制 int,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48981946/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com