-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add ct-codecs to dependencies * Remove base64 from dependencies * NIT * NIT * errors: impl From ct-codecs Error * Update CHANGELOG * encode/decode_b64 * b64: Use alloc * NIT * Remove unused lifetime
- Loading branch information
Showing
6 changed files
with
57 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
### 0.1.1 | ||
|
||
__Date:__ March 21, 2021. | ||
|
||
__Changelog:__ | ||
|
||
- Switch from `base64` to `ct-codecs` to provide constant-time Base64 encoding/decoding | ||
|
||
|
||
### 0.1.0 - Initial release | ||
|
||
__Date:__ October 12, 2020. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "pasetors" | ||
version = "0.1.0" # Update html_root_url in lib.rs along with this. | ||
version = "0.1.1" # Update html_root_url in lib.rs along with this. | ||
authors = ["brycx <[email protected]>"] | ||
edition = "2018" | ||
description = "PASETO: Platform-Agnostic Security Tokens (in Rust)" | ||
|
@@ -25,12 +25,11 @@ features = ["u64_backend"] | |
version = "0.15.4" | ||
default-features = false | ||
|
||
[dependencies.base64] | ||
version = "0.13.0" | ||
default-features = false | ||
features = ["alloc"] | ||
|
||
[dependencies.rand_core] | ||
version = "0.5.1" | ||
default-features = false | ||
features = ["alloc"] | ||
features = ["alloc"] | ||
|
||
[dependencies.ct-codecs] | ||
version = "1.1.1" | ||
default-features = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters