使用不带编码的 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

bytesbytestring 是 AES

的预期 I/O 数据类型