Skip to content

Commit

Permalink
bump version - ready to release
Browse files Browse the repository at this point in the history
Signed-off-by: Anjan Roy <hello@itzmeanjan.in>
  • Loading branch information
itzmeanjan committed Nov 25, 2023
1 parent 0108e02 commit d28cf3d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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 = "turboshake"
version = "0.1.9"
version = "0.2.0"
edition = "2021"
authors = ["Anjan Roy <hello@itzmeanjan.in>"]
description = "A family of extendable output functions based on keccak-p[1600, 12] permutation"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -442,14 +442,14 @@ Using TurboSHAKE{128, 256} Xof API is fairly easy
# either
turboshake = { git = "https://github.com/itzmeanjan/turboshake" }
# or
turboshake = "0.1.9"
turboshake = "0.2.0"

# If interested in using underlying keccak-p[1600, 12] permutation and sponge (developer) API
turboshake = { version = "0.1.9", features = "dev" }
turboshake = { version = "0.2.0", features = "dev" }
# or if interested in using underlying 2x SIMD parallel keccak-p[1600, 12] permutation API
turboshake = { version = "0.1.9", features = ["dev", "simdx2"] }
turboshake = { version = "0.2.0", features = ["dev", "simdx2"] }
# or if interested in using underlying 4x SIMD parallel keccak-p[1600, 12] permutation API
turboshake = { version = "0.1.9", features = ["dev", "simdx4"] }
turboshake = { version = "0.2.0", features = ["dev", "simdx4"] }
```

2) Create a TurboSHAKE{128, 256} Xof object.
Expand Down

0 comments on commit d28cf3d

Please sign in to comment.