diff --git a/CHANGELOG.md b/CHANGELOG.md index 07eb09c..da215c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [cryptoki-sys-0.1.7](https://github.com/parallaxsecond/rust-cryptoki/tree/cryptoki-sys-0.1.7) (2023-10-05) + +[Full Changelog](https://github.com/parallaxsecond/rust-cryptoki/compare/cryptoki-0.5.0...cryptoki-sys-0.1.7) + +**Closed issues:** + +- PKCS OAEP padding always returns: Pkcs11\(ArgumentsBad\) [\#163](https://github.com/parallaxsecond/rust-cryptoki/issues/163) + +**Merged pull requests:** + +- Fix spelling and Update Cargo.lock [\#172](https://github.com/parallaxsecond/rust-cryptoki/pull/172) ([tgonzalezorlandoarm](https://github.com/tgonzalezorlandoarm)) +- Start tracking Cargo.lock file [\#171](https://github.com/parallaxsecond/rust-cryptoki/pull/171) ([tgonzalezorlandoarm](https://github.com/tgonzalezorlandoarm)) +- ci: Add workflow dispatch [\#170](https://github.com/parallaxsecond/rust-cryptoki/pull/170) ([tgonzalezorlandoarm](https://github.com/tgonzalezorlandoarm)) +- Drop unused target-lexicon crate [\#169](https://github.com/parallaxsecond/rust-cryptoki/pull/169) ([tgonzalezorlandoarm](https://github.com/tgonzalezorlandoarm)) +- Change lints for the library and allow unknown lints [\#168](https://github.com/parallaxsecond/rust-cryptoki/pull/168) ([tgonzalezorlandoarm](https://github.com/tgonzalezorlandoarm)) +- Bump bindgen to 0.66.1 [\#167](https://github.com/parallaxsecond/rust-cryptoki/pull/167) ([tgonzalezorlandoarm](https://github.com/tgonzalezorlandoarm)) +- Fix RSA OKCS OAEP mechanism [\#165](https://github.com/parallaxsecond/rust-cryptoki/pull/165) ([wiktor-k](https://github.com/wiktor-k)) +- elliptic\_curve: Fix broken references [\#161](https://github.com/parallaxsecond/rust-cryptoki/pull/161) ([wiktor-k](https://github.com/wiktor-k)) +- Make generic bindings [\#154](https://github.com/parallaxsecond/rust-cryptoki/pull/154) ([arjennienhuis](https://github.com/arjennienhuis)) + ## [cryptoki-sys-0.1.6](https://github.com/parallaxsecond/rust-cryptoki/tree/cryptoki-sys-0.1.6) (2023-04-22) [Full Changelog](https://github.com/parallaxsecond/rust-cryptoki/compare/cryptoki-0.3.1...cryptoki-sys-0.1.6) diff --git a/Cargo.lock b/Cargo.lock index aa6362f..2ec896e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -115,7 +115,7 @@ dependencies = [ [[package]] name = "cryptoki-sys" -version = "0.1.6" +version = "0.1.7" dependencies = [ "bindgen", "libloading", diff --git a/cryptoki-sys/Cargo.toml b/cryptoki-sys/Cargo.toml index 71b5aa7..8a50b2c 100644 --- a/cryptoki-sys/Cargo.toml +++ b/cryptoki-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cryptoki-sys" -version = "0.1.6" +version = "0.1.7" authors = ["Contributors to the Parsec project"] edition = '2018' description = "FFI wrapper around the PKCS #11 API" diff --git a/cryptoki/Cargo.toml b/cryptoki/Cargo.toml index b40cd23..0ba396e 100644 --- a/cryptoki/Cargo.toml +++ b/cryptoki/Cargo.toml @@ -17,7 +17,7 @@ bitflags = "1.3" libloading = "0.7.0" log = "0.4.14" psa-crypto = { version = "0.9.0", default-features = false, optional = true } -cryptoki-sys = { path = "../cryptoki-sys", version = "0.1.6" } +cryptoki-sys = { path = "../cryptoki-sys", version = "0.1.7" } paste = "1.0.6" secrecy = "0.8.0"