给我几个SKINNY-64加密解密代码运行结果的截图
时间: 2023-06-11 17:07:13 浏览: 165
很抱歉,由于我是一个文本AI模型,无法提供代码运行结果的截图。不过我可以为您提供一些SKINNY-64加密解密的Python代码示例,供您参考:
加密代码:
```
from skinny import Skinny64
key = bytes.fromhex('000102030405060708090a0b0c0d0e0f')
cipher = Skinny64(key)
plaintext = bytes.fromhex('0011223344556677')
ciphertext = cipher.encrypt(plaintext)
print(ciphertext.hex())
```
解密代码:
```
from skinny import Skinny64
key = bytes.fromhex('000102030405060708090a0b0c0d0e0f')
cipher = Skinny64(key)
ciphertext = bytes.fromhex('b714f9f9dfe5921b')
plaintext = cipher.decrypt(ciphertext)
print(plaintext.hex())
```
这里的示例代码使用了 `skinny` 库来实现 SKINNY-64 加密解密。如果您已经安装了该库,可以直接运行代码并查看输出结果。
阅读全文