使用不带编码的 AES 加密整数
Encrypt integers using AES without encodings
有什么方法可以加密整数 而不用 编码吗?
即AES.new(key, mode, iv).encrypt(some_integer_without_encodings)
...并直接以整数形式得到密文(没有任何形式的encodings/decodings)?
见https://pycryptodome.readthedocs.io/en/latest/src/cipher/cipher.html
bytes
或 bytestring
是 AES
的预期 I/O 数据类型
有什么方法可以加密整数 而不用 编码吗?
即AES.new(key, mode, iv).encrypt(some_integer_without_encodings)
...并直接以整数形式得到密文(没有任何形式的encodings/decodings)?
见https://pycryptodome.readthedocs.io/en/latest/src/cipher/cipher.html
bytes
或 bytestring
是 AES