cookie 需要什么样的编码?
对于 cookie
应该执行哪种编码
(将字节数组转换为文本)?
Base64 ?
UrlEncode ?
...
For cookie
what kind of encoding
should be performed (converting a byte array to text) ?
Base64 ?
UrlEncode ?
...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我个人会对 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
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
您不需要任何编码。为了防止用户篡改,最简单的解决方案是使用会话(通常在幕后使用
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.