cookie 需要什么样的编码?

发布于 2024-10-02 15:39:08 字数 115 浏览 2 评论 0原文

对于 cookie 应该执行哪种编码(将字节数组转换为文本)?

Base64 ?
UrlEncode ?
...

For cookie what kind of encoding should be performed (converting a byte array to text) ?

Base64 ?
UrlEncode ?
...

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

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

发布评论

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

评论(3

遥远的绿洲 2024-10-09 15:39:08

我个人会对 ID 进行 MD5 编码并将几乎所有内容存储在数据库中,或者如果我可以更改数据库,请使用 GUID 而不是递增 ID

I personally will MD5 encode an ID and store just about everything in a DB or if i can change the db use a GUID instead of a incrementing ID

不爱素颜 2024-10-09 15:39:08

Base64 编码的字符串对于 URL 或 cookie 无效。 Base64 编码有许多变体可以避免禁用字符。在.NET中,您可以使用HttpServerUtility.UrlTokenEncode()和.UrlTokenDecode()。

请参阅https://stackoverflow.com/a/1789179/24315

Base64-encoded strings are not valid for URLs or cookies. There are a number of variations on base64 encoding that avoid the forbidden characters. In .NET, you can use HttpServerUtility.UrlTokenEncode() and .UrlTokenDecode().

See https://stackoverflow.com/a/1789179/24315

℉服软 2024-10-09 15:39:08

您不需要任何编码。为了防止用户篡改,最简单的解决方案是使用会话(通常在幕后使用 ASP.NET_SessionId),而不是制作自定义 cookie。

编辑:如果您确实需要存储任意字节数组,则 Base 64 可以工作。但您应该解释为什么要这样做。

You don't need any encoding. To prevent user tampering, the simplest solution is to use sessions (which typically uses ASP.NET_SessionId behind the scenes), rather than making custom cookies.

EDIT: If you really need to store an arbitrary byte array, base 64 will work. But you should explain why you want to do this.

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