From 9ef2b51c17010d5f3a7009a1a7b4e065d0a303bf Mon Sep 17 00:00:00 2001 From: Anjan Roy Date: Tue, 21 Nov 2023 14:47:35 +0530 Subject: [PATCH] bump version of library - ready to publish Signed-off-by: Anjan Roy --- Cargo.toml | 2 +- README.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8640059..93210d1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "turboshake" -version = "0.1.8" +version = "0.1.9" edition = "2021" authors = ["Anjan Roy "] description = "A family of extendable output functions based on keccak-p[1600, 12] permutation" diff --git a/README.md b/README.md index 5e33366..451c06f 100644 --- a/README.md +++ b/README.md @@ -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.8" +turboshake = "0.1.9" # If interested in using underlying keccak-p[1600, 12] permutation and sponge (developer) API -turboshake = { version = "0.1.8", features = "dev" } +turboshake = { version = "0.1.9", features = "dev" } # or if interested in using underlying 2x SIMD parallel keccak-p[1600, 12] permutation API -turboshake = { version = "0.1.8", features = ["dev", "simdx2"] } +turboshake = { version = "0.1.9", features = ["dev", "simdx2"] } # or if interested in using underlying 4x SIMD parallel keccak-p[1600, 12] permutation API -turboshake = { version = "0.1.8", features = ["dev", "simdx4"] } +turboshake = { version = "0.1.9", features = ["dev", "simdx4"] } ``` 2) Create a TurboSHAKE{128, 256} Xof object.