ActionScript 的椭圆曲线加密
有谁知道 ActionScript 是否有(最好是有效的:-))椭圆曲线加密实现?
我所知道的唯一库是 as3crypto,它为对称加密、散列和多种加密技术提供了出色的实现。其他与密码学相关的操作,但它只有 RSA 用于公钥密码学。
预先感谢,
扬
Does anyone know if there is a (preferably efficient :-) ) implementation of elliptic curve cryptography for ActionScript?
The only library I know of is as3crypto, which offers great implementations for symmetric cryptography, hashing and several other cryptography-related operations, but it has only RSA for public key cryptography.
Thanks in advance,
Jan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个实现了许多加密算法的库,包括椭圆曲线 Diffie-Hellman (ECDH) 算法:http ://code.google.com/p/flame。所有算法都与.NET Framework兼容,并且具有与.NET几乎相同的API。
Here is a library that implements a lot of cryptographic algorithms including the Elliptic Curve Diffie-Hellman (ECDH) algorithm: http://code.google.com/p/flame. All algorithms are compatible with .NET Framework and have nearly the same API as .NET ones.
AFAIK 没有其他有能力的密码库。在一个项目中,我将 as3crypto 快速移植到 Haxe,以便它可以使用 Alchemy 内存,并且在某些测试用例中速度提高了大约 20 倍。不过,这只是一个快速港口。
我几个月前创建了此功能请求:
http://bugs.adobe.com/ jira/browse/FP-6440
然而,即使我认为这是至关重要的事情,它似乎也没有引起任何注意。
AFAIK there is no other competent cryptographic library. For a project I made a quick port of as3crypto over to Haxe so it could use Alchemy memory, and in some test cases it was around 20x faster. It was just a quick port tho.
I created a few months ago this feature request:
http://bugs.adobe.com/jira/browse/FP-6440
However it doesn't seem to have caught any attention even if I think it's something vital.