Skip to content

Commit

Permalink
fix more README typos
Browse files Browse the repository at this point in the history
  • Loading branch information
GiacomoPope committed Jul 22, 2024
1 parent b55b3bc commit f727e51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ use:
```python
>>> from ml_kem import ML_KEM128
>>> ek, dk = ML_KEM128.keygen()
>>> key, ct = ML_KEM128.encaps(pk)
>>> _key = ML_KEM128.decaps(ct, sk)
>>> key, ct = ML_KEM128.encaps(ek)
>>> _key = ML_KEM128.decaps(ct, dk)
>>> assert key == _key
```

Expand Down

0 comments on commit f727e51

Please sign in to comment.