1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2025-09-09 02:09:38 +02:00

Fixed typo in sop readme

This commit is contained in:
Felix Hagemans 2025-06-04 16:02:23 +02:00
parent 7953ade136
commit 5f30df6d16

View file

@ -67,7 +67,7 @@ byte[] encrypted = sop.encrypt()
// Decrypt a message
ByteArrayAndResult<DecryptionResult> messageAndVerifications = sop.decrypt()
.verifyWith(cert)
.verifyWithCert(cert)
.withKey(key)
.ciphertext(encrypted)
.toByteArrayAndResult();