node.js的安全JSON实现。 SecJSON允许加密/解密消息或JSON对象的特定值。
用法
npm install secjson
加密
var secjson = require ( 'secjson' ) ;
var options = {
rsa_pub : fs . readFileSync ( __dirname + '/test-auth0_rsa.pub' ) ,
pem : fs . readFileSync ( __dirname + '/test-auth0.pem' ) ,
encryptionAlgorithm : 'http://tiagomistral.github.io/SecJSON#aes128-cbc' ,
keyEncryptionAlgorighm : 'http://tiagomistral.github.io/SecJSON#rs
1