Encryption c# and Cookies

本文关键字:Cookies and Encryption | 更新日期: 2023-09-27 18:36:42

我正在寻找最后不加密带有"="的字符串的算法。

为什么呢?我使用它在 cookie 中存储数据,字符串中的"="与 cookie 中的"="冲突。

有人知道吗?谢谢。。

Encryption c# and Cookies

字符串末尾的=不是来自加密,而是来自使用 base64 编码。

您可以改用十六进制格式:

string encoded = BitConverter.ToString(data).Replace("-","");

此字符串仅包含字符 0-9 和 A-F,因此不会导致任何冲突。