You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't know if this is intentional, I believe not. The second example in the Readme, "With Signing", has a typo: instead of EncryptParameter, like in the first example, there has been written EncryptParamete.
With signing
KotlinPGP.encrypt(EncryptParamete( # <--- here
message = contentToEncrypt,
publicKey = publicKeys, // A list of public key string
enableSignature = true,
privateKey = keypair.secretKey, // A private key string
password = keyPassword
))
I believe this should be
KotlinPGP.encrypt(EncryptParameter( # <--- here
message = contentToEncrypt,
publicKey = publicKeys, // A list of public key string
enableSignature = true,
privateKey = keypair.secretKey, // A private key string
password = keyPassword
))
The text was updated successfully, but these errors were encountered:
I don't know if this is intentional, I believe not. The second example in the Readme, "With Signing", has a typo: instead of
EncryptParameter
, like in the first example, there has been writtenEncryptParamete
.With signing
I believe this should be
The text was updated successfully, but these errors were encountered: