在 mod 重写中加密字符串
是否可以在 mod rewrite 中加密(并连接)两个字符串而不调用外部程序?如果不是,那么哪个是最快的多平台解决方案?
我正在考虑从会话 ID 和静态盐创建一个令牌,并通过文件下载来检查它。因此,只能使用正确的会话 ID 和令牌来访问静态文件。 (共享令牌是不够的......)
Is it possible to encrypt (and concatenate) two strings in mod rewrite without calling an external program? If not, then which is the fastest multi platform solution for that?
I'm thinking on creating a token from the session id, and a static salt, and check it by file download. So the statics files would be only accessible with the correct session id and token. (sharing the token would not be enough...)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,通过
mod_rewrite
是不可能的:Apache Module mod_rewrite
我不知道您使用的是哪种编程语言:
您可以使用适合您的语言的 Blowfish 实现。由于它很受欢迎,我怀疑应该有一个可用。
我正在考虑根据会话 ID 创建令牌和静态盐,:
看起来您正在寻找一种单向哈希函数而不是加密。
Nope its not possible through
mod_rewrite
:Apache Module mod_rewrite
I do not know which programming language you are using:
You can use Blowfish implementation for your language. Since its quite popular I suspect there should be one available.
I'm thinking on creating a token from the session id, and a static salt,:
It looks like you are looking for a One way Hash function rather than an encryption.