json.crypto:用于JSON对象的可移植字段级加密的Java API

时间:2024-06-11 12:13:59
【文件属性】:

文件名称:json.crypto:用于JSON对象的可移植字段级加密的Java API

文件大小:13KB

文件格式:ZIP

更新时间:2024-06-11 12:13:59

Java

json.crypto json加密库提供了对json对象的特定字段进行加密的功能。 密码json对象仍然是完全兼容的json对象,但是带有包含加密信息的其他字段。 加密json对象 准备加密器 创建JsonEncrypter对象 以与使用Cipher.getInstance相同的方式使用JsonEncrypter的构造函数。 例如: Key key = new SecretKeySpec ( new byte [ 16 ], " AES " ); // this is a null key, obviously don't do that, use a CSPRNG or PBKDF or scrypt for your key JsonEncrypter eCrypter = new JsonEncrypter (key, " AES/CTR/NoPadding " ); 设置要


【文件预览】:
json.crypto-master
----src()
--------test()
--------main()
----LICENSE(1KB)
----README.md(4KB)
----pom.xml(4KB)
----.gitignore(219B)

网友评论