提问人:LGR 提问时间:11/15/2023 更新时间:11/15/2023 访问量:29
有没有办法将两条消息加密成一个字符串?
Is there a way to encrypt two messages into a single string?
问:
如何将两个字符串加密为一个字符串,以便可以使用两个密钥从单个字符串中获取两条不同的消息?
我需要一种方法,应该像这样工作:
key1 = "asdf"
key2= "xcvb"
encrypted_message = "qpoweiurtz"
decrypt(encrypted_message, key1)
decrypt(encrypted_message, key2)
输出:
apple
pear
这样的事情可能吗?
答: 暂无答案
评论