通过 32 个字符密钥加密解密 12 位文本

发布于 2024-12-08 19:14:22 字数 97 浏览 1 评论 0原文

我正在寻找一种通过 32 个字符长的密钥加密和解密 12 位文本的方法。 密码必须具有固定长度(32 或更少)。可能吗?

提前致谢

I am looking for a way to encrypt and decrypt 12 digits text by 32 characters long key. The cipher must be of fixed length (32 or less). Is it possible?

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼眸里的快感 2024-12-15 19:14:22

当然。使用良好的分组密码(例如 AES),您可以选择将文本加密为块(输出将是一个 32 字符块)并且您将拥有 256 位加密或使用加密的随机数对文本进行异或(输出将是 12 字节密文)并且您将拥有 96 位加密。

只需谷歌搜索 AES 和 C# 就应该能找到一个现成的实现。请务必使用正确的 nonce (在某些情况下也称为 初始化向量)。

要根据您的目的使用哈希(请参阅对此答案的评论),请按以下步骤操作:

哈希:

  1. 计算 HASH = hash(FROM_DATE + TO_DATE + SECRET)

  2. 输出FROM_DATE + TO_DATE + HASH

+ 表示连接,SECRET 只有您知道。

如果仅使用大写字母和数字,则长度应至少 25 个字符。

验证:

  1. 将字符串拆分为FROM_DATE + TO_DATEHASH

  2. 验证HASH = hash(FROM_DATE + TO_DATE + SECRET)

SHA-256 应该可以很好地实现这一点。

Of course. With a good block cipher (like AES), you can choose between encrypting text as a block (the output will be a 32 character block) and you'll have 256 bit encryption or XORing the text with an encrypted nonce (the output will be a 12 byte ciphertext) and you'll have 96 bit encryption.

Just googling for AES and C# should come up with a ready-to-use implementation. Be sure to use a proper nonce (in some contexts also called initialization vector).

To use a hash for your purposes (see comments on this answer), proceed as follows:

Hashing:

  1. Compute HASH = hash(FROM_DATE + TO_DATE + SECRET).

  2. Output FROM_DATE + TO_DATE + HASH.

+ denotes concenation and SECRET is only known to you.

If using only capitals and numbers, it should be at least 25 characters long.

Verification:

  1. Split string into FROM_DATE + TO_DATE and HASH.

  2. Verify that HASH = hash(FROM_DATE + TO_DATE + SECRET)

SHA-256 should work quite well for this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文