如何在 Actionscript 3 中计算 CRC 校验和?

发布于 2024-09-14 06:04:04 字数 104 浏览 4 评论 0原文

我正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

诠释孤独 2024-09-21 06:04:04

as3corelib 由 Mike Chambers/Adobe 维护,包含您可能需要的所有内容 加密部分 包括:

  • HMAC
  • MD5
  • MD5Stream
  • SHA1
  • SHA224
  • SHA256
  • WSSEUsernameTocken

as3corelib maintained by Mike Chambers/Adobe, contains everything you probably need in its crypto section including:

  • HMAC
  • MD5
  • MD5Stream
  • SHA1
  • SHA224
  • SHA256
  • WSSEUsernameTocken
盗梦空间 2024-09-21 06:04:04

如何使用此 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!!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文