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
))
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