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

Merge pull request #475 from felhag/fix/typo-readme

Fixed typo in sop readme
This commit is contained in:
Paul Schaub 2025-06-04 16:37:00 +02:00 committed by GitHub
commit a74db2d26d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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