JavaScript RSA加密库Cryptico js

分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow

               

转自:http://www.open-open.com/news/view/27cfef

Cryptico.js 是一个易于使用的JavaScript工具包用于在客户端对文本进行加密。

它支持RSA + AES方法,任意字节长度(228, 1024等)的文本都可以进行加密。 Cryptico.js

内容使用一个公钥进行加密,并且只能用这个密钥进行解密。
Cryptico.js 没有依赖任何JS框架进行开发,拥有良好的文档。

1 // The passphrase used to repeatably generate this RSA key.
2 var PassPhrase = "The Moon is a Harsh Mistress.";
3  
4 // The length of the RSA key, in bits.
5 var Bits = 1024;
6  
7 var MattsRSAkey = cryptico.generateRSAKey(PassPhrase, Bits);
1 var PlainText = "Matt, I need you to help me with my Starcraft strategy.";
2  
3 var EncryptionResult = cryptico.encrypt(PlainText, MattsPublicKeyString);


项目主页:http://cryptico.wwwtyro.net/


           

分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow

你可能感兴趣的:(JavaScript RSA加密库Cryptico js)