java android URL加密
我正在开发一个将文件上传到亚马逊 s3 的应用程序(应用程序的一部分)。但是当我生成文件的 URL 时,它会显示身份验证密钥、文件名等。我需要加密 URL。另外,我使用微小的 url 来缩短 URL,但是当我将光标放在链接上时,它会显示真实的 URL。我寻找 md5 但无法使其工作。有什么建议吗?
I am working on an application that uploads a file to amazon s3(part of the application). But when I generate the URL of the files, it shows the authentication key, file name and etc. I need to encrypt the URL. Also I am using tiny url to shorten the URL but when I put the curser on the link it shows the real URL. I looked for md5 but I couldn't make it work. Is there any suggestion?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将尝试解释 MD5 的工作原理
输出为:7f5976785d03c60f9fd4b08fb78e72ce
这是您的消息摘要。
编辑
应始终使用适当的哈希算法(例如 PBKDF2、bcrypt 或 scrypt)对用户名和密码进行哈希处理。此外,始终使用 SSL 传输机密数据。
I will try to explain how MD5 works
The output is : 7f5976785d03c60f9fd4b08fb78e72ce
This is your message digest.
EDIT
Hashing a username and password should always be done with an appropriate hashing algorithm like PBKDF2, bcrypt or scrypt. Furthermore always use SSL to transfer confidential data.