如何在 Actionscript 3 中计算 CRC 校验和?
我正在 Flex 中开发一个应用程序,其中我需要计算不同文件的校验和。我想知道actionscript 中是否有直接的方法来计算它,或者我是否必须使用任何外部库?
提前致谢 :)
I am developing an application in flex in which I need to calculate checksum of different files. I would like to know if there is a direct method in actionscript to calculate that or do I have to go for any external libraries?
Thanks in advance :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
as3corelib 由 Mike Chambers/Adobe 维护,包含您可能需要的所有内容 加密部分 包括:
as3corelib maintained by Mike Chambers/Adobe, contains everything you probably need in its crypto section including:
如何使用此 as3corelib 对文件执行 md5,即 php 和 c# 中的“c:\documents and settings\all user\desktop\demofile.xml”,您可以 md5files 并获取文件的校验和 - 我也使用 md5summer要查看输出的 md5 是否正确,php 和 Visual C# 输出正确的 md5,但是我找不到任何简单的图解来解释如何使用 flex / air / as3 执行此操作,什么也没有 - 我导入了以下库。
导入 com.adobe.crypto.HMAC;
导入 com.adobe.crypto.MD5;
导入 com.adobe.crypto.SHA1;
导入 com.adobe.crypto.SHA224;
导入 com.adobe.crypto.SHA256;
导入 com.adobe.crypto.MD5Stream;
我本来会认为这将是 md5stream,但谷歌搜索这却毫无结果 - 请提供有关如何对本地文件进行简单 md5 校验和的任何帮助,那就太棒了!
how do you use this as3corelib to perform a md5 on a file i.e. "c:\documents and settings\all user\desktop\demofile.xml" in php and c# you can md5files and get the checksum of the file - i also use md5summer to see if the outputted md5 is correct php and visual c# output the correct md5 however i cant find any easy tut that explains how to do this using flex / air / as3 nothing - i have imported the followinng libs.
import com.adobe.crypto.HMAC;
import com.adobe.crypto.MD5;
import com.adobe.crypto.SHA1;
import com.adobe.crypto.SHA224;
import com.adobe.crypto.SHA256;
import com.adobe.crypto.MD5Stream;
i would have though that it would be md5stream be googling this turns up nought - please any help on how to do a simple md5 checksum of a local file would be great!!
看看这个脚本。我认为它会满足您的需求:
http://code.google.com/p/queueloader-as3/source/browse/trunk/build/src/nochump/util/zip/CRC32.as?r= 57
Check out this script. I think it will do what you have in mind:
http://code.google.com/p/queueloader-as3/source/browse/trunk/build/src/nochump/util/zip/CRC32.as?r=57