jjbenitez026
Results
1
issues of
jjbenitez026
I have this code: ```js let pubKey = forge.pki.publicKeyFromPem(environment.publicKey); let encryptText = pubKey.encrypt(forge.util.encodeUtf8("Some text")); ``` If i do that, the decryption work: ```js let pk = forge.pki.privateKeyFromPem(environment.privateKey); let plain =...