Questions tagged «md5»

具有128位(16字节)哈希值的密码哈希函数。MD5不再被视为安全哈希,并且不应用于保护敏感信息(例如密码)

7
如何在JavaScript中生成MD5文件哈希?
如何编写functionToGenerateMD5hash此代码?我已经拥有了fileVideo,我需要通过单击按钮将相应的md5哈希发送到服务器。 $("#someButton").click(function() { var fr = new FileReader(); fr.onload = function(e) { string md5 = functionToGenerateMD5hash(e.target.result); // send md5 here }; fr.readAsArrayBuffer(fileVideo);
77 javascript  node.js  hash  md5 


1
RoR-MD5代
如何在Rails 3.0中使用MD5加密字符串? pass = MD5.hexdigest(pass) 在模型中产生uninitialized constant MyModel::MD5
76 ruby  hash  md5  digest 

12
如何在C ++中获取文件的MD5哈希?[关闭]
已关闭。这个问题需要更加集中。它当前不接受答案。 想改善这个问题吗?更新问题,使其仅通过编辑此帖子来关注一个问题。 3年前关闭。 改善这个问题 我有文件路径。如何获得它的MD5哈希?
75 c++  hash  md5 

3
在HttpClient中解压缩之前是否可以访问压缩数据?
我正在使用Google Cloud Storage .NET客户端库。有三种功能(.NET,我的客户端库和存储服务之间)以不愉快的方式结合在一起: 下载文件(Google Cloud Storage术语中的对象)时,服务器会包含已存储数据的哈希值。然后,我的客户代码会根据下载的数据来验证该哈希。 Google云端存储的另一个功能是,用户可以设置对象的Content-Encoding,并且当请求包含匹配的Accept-Encoding时,该对象将作为下载的标头包含在内。(目前,让我们忽略请求中不包含的行为...) HttpClientHandler 可以自动透明地解压缩gzip(或压缩)内容。 当所有这三个结合在一起时,我们就会遇到麻烦。这是一个简短但完整的程序,演示了这一点,但是没有使用我的客户端库(并且没有访问可公开访问的文件): using System; using System.Linq; using System.Net; using System.Net.Http; using System.Security.Cryptography; using System.Text; using System.Threading.Tasks; class Program { static async Task Main() { string url = "https://www.googleapis.com/download/storage/v1/b/" + "storage-library-test-bucket/o/gzipped-text.txt?alt=media"; var handler = new HttpClientHandler { AutomaticDecompression = DecompressionMethods.GZip }; var …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.