Skip to content

Commit

Permalink
fix example in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
supinie committed Jun 19, 2024
1 parent a0407eb commit a127d92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "enc_rust"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
authors = ["supinie <[email protected]>"]

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ fn bob(sk: PrivateKey, ciphertext: &[u8]) -> [u8; 32] {


fn main() {
let (pk, sk) = generate_key_pair(None, 3).unwrap();
let (pk, sk) = generate_keypair_768(None).unwrap();

let (ciphertext, alice_secret) = alice(pk);

Expand Down

0 comments on commit a127d92

Please sign in to comment.