Skip to content
This repository has been archived by the owner on Mar 14, 2020. It is now read-only.

Commit

Permalink
Fix typo in README
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard-W committed Jul 25, 2017
1 parent ba15d84 commit 85065b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -138,7 +138,7 @@ val signer = RSASSA_PSS(SHA256, 32)
val signature = signer(privateKey, message).get

println(signer.verify(publicKey, message, signature).get) // Prints true
println(signer.verify(publicKey, falseMessage, signature).get) // Prints true
println(signer.verify(publicKey, falseMessage, signature).get) // Prints false
```

Password hashing
Expand Down

0 comments on commit 85065b7

Please sign in to comment.