我正在使用 Grails 插件:crypto:2.0,并且在 PGP 中加密解密消息时遇到问题。
这是我的控制器代码:
def index3 () {
def pgpK = PGP.generateKeyPair()
String encodedPublic = pgpK.encodedPublicKey
String encodedPrivate = pgpK.encodedPrivateKey
PGP pgp = new PGP (encodedPublic, encodedPrivate)
String message = "Hello World"
String encodeStr = pgp.encryptArmored(message)
println(encodeStr)
String decryptStr = pgp.decrypt(encodeStr.getBytes()).toString()
println(decryptStr)
}
执行时,它会将加密消息显示为装甲 PGP。但是,当我使用装甲加密消息并解密时,它总是返回 null。
有没有人遇到过这个问题?