本文介绍了在 ActionScript3 中加密并在 asp.net c# 中解密的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要将数据从 Flash 发送到服务器,因此我正在寻找一个 Flash ActionScript 3.0 脚本来加密文本和一个 C# .net 脚本来解密文本.

I need to send data from flash to the server, so I'm looking for a flash ActionScript 3.0 script that will encrypt a text and a C# .net script that decrypt the text.

有人可以帮我吗?

推荐答案

查看 as3corelib 加密包:http://code.google.com/p/as3corelib/source/browse/trunk/src/com/adobe/crypto/?r=49

Check out the as3corelib crypto package:http://code.google.com/p/as3corelib/source/browse/trunk/src/com/adobe/crypto/?r=49

而且 .NET 也有自己的加密命名空间:http://msdn.microsoft.com/en-us/图书馆/system.security.cryptography.aspx

And .NET has it's own cryptography namespace too:http://msdn.microsoft.com/en-us/library/system.security.cryptography.aspx

这篇关于在 ActionScript3 中加密并在 asp.net c# 中解密的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 17:13