Releasing v0.3.1 (#141)

This commit is contained in:
Kevin Lewi
2021-02-11 18:20:11 -08:00
committed by GitHub
parent e694a88ef9
commit e4636e0a97
4 changed files with 11 additions and 3 deletions
+6
View File
@@ -1,5 +1,11 @@
# Changelog
## 0.3.1 (February 11, 2020)
* Re-exporting the rand library (and including it as a dependency instead of
just rand_core)
* Exposing a convenience function for converting from byte array to Key type
## 0.3.0 (February 8, 2020)
* General API and documentation improvements, including the support of custom
Generated
+3 -1
View File
@@ -1,5 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "aead"
version = "0.3.2"
@@ -571,7 +573,7 @@ checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
[[package]]
name = "opaque-ke"
version = "0.3.0"
version = "0.3.1"
dependencies = [
"anyhow",
"base64",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "opaque-ke"
version = "0.3.0"
version = "0.3.1"
repository = "https://github.com/novifinancial/opaque-ke"
keywords = ["cryptography", "crypto", "opaque", "passwords", "authentication"]
description = "An implementation of the OPAQUE password-authenticated key exchange protocol"
+1 -1
View File
@@ -22,7 +22,7 @@ Installation
Add the following line to the dependencies of your `Cargo.toml`:
```
opaque-ke = "0.3.0"
opaque-ke = "0.3.1"
```
Resources