C# 和 ActionScript 2 之间的加密
我正在尝试从闪存(动作脚本 2.0)发送加密数据以在 C# 中解密它
到目前为止我发现 这篇文章(链接在 Chrome、Opera 和 Safari 中打开。在 IE 或 Firefox 中不起作用) 还有这个问题: Encrypt in ActionScript3 and Decrypt in asp.net c#
但两者都只能在 ActionScript 3 中工作
您知道在 Action Script 2 上执行此操作的 API 吗?
I'm trying to send encrypted data from a flash ( Action Script 2.0) to decrypt it in C#
So far I've found this post (Link opens in Chrome, Opera and Safari. Doesn't work in IE nor Firefox)
There's also this question: Encrypt in ActionScript3 and Decrypt in asp.net c#
But both only work in ActionScript 3
Do you know an API to do this on Action Script 2 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
了解您打算加密的原因/内容会很有用。我相当有信心你可能找错了对象。众所周知,ActionScript 很容易被反编译,并且您的加密工作将公开给所有人看。虽然这可能不是问题,但如果您确实需要加密和端到端安全性,请使用 HTTPS,而不是一些自制的安全数据通信方法。
It would be useful to know why/what you intend to encypt. I'm fairly confident that you're probably barking up the wrong tree. It's common knowlege that ActionScript is very easily decompiled and your encryption efforts will be wide open for all to see. While this may not be a problem, if you really need encryption and end-to-end security, use HTTPS, not some home-brewed means of securely communicating data.
事实证明,第一个链接确实适用于 ActionScript 2.0
还有关于如何完全实现我想要实现的目标的代码。
It turned out that the first link indeed works with ActionScript 2.0
There's also code on how to do exactly what I was trying to achieve.