Skip to content

Commit

Permalink
subtle-encoding v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-iqlusion committed Oct 14, 2019
1 parent 32af193 commit 319965a
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 24 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions hkd32/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "hkd32"
description = """
HMAC-based Hierarchical Key Derivation: deterministically derive
a hierarchy of symmetric keys from initial keying material through
repeated applications of the Hash-based Message Authentication Code
(HMAC) construction. Optionally supports storing root derivation
passwords as a 24-word mnemonic phrase (i.e. BIP39).
"""
HMAC-based Hierarchical Key Derivation: deterministically derive
a hierarchy of symmetric keys from initial keying material through
repeated applications of the Hash-based Message Authentication Code
(HMAC) construction. Optionally supports storing root derivation
passwords as a 24-word mnemonic phrase (i.e. BIP39).
"""
version = "0.3.0" # Also update html_root_url in lib.rs when bumping this
authors = ["Tony Arcieri <tony@iqlusion.io>"]
license = "Apache-2.0"
Expand All @@ -28,7 +28,7 @@ sha2 = { version = "0.8", default-features = false }
pbkdf2 = { version = "0.3", optional = true, default-features = false }

[dependencies.subtle-encoding]
version = "0.4"
version = "0.5"
optional = true
path = "../subtle-encoding"

Expand Down
6 changes: 6 additions & 0 deletions subtle-encoding/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [0.5.0] (2019-10-13)

- Upgrade to `zeroize` v1.0.0 ([#279])

## [0.4.1] (2019-10-07)

- Upgrade to `zeroize` v1.0.0-pre ([#268])
Expand Down Expand Up @@ -65,6 +69,8 @@

- Initial release

[0.5.0]: https://github.com/iqlusioninc/crates/pull/283
[#279]: https://github.com/iqlusioninc/crates/pull/279
[0.4.1]: https://github.com/iqlusioninc/crates/pull/269
[#268]: https://github.com/iqlusioninc/crates/pull/268
[0.4.0]: https://github.com/iqlusioninc/crates/pull/249
Expand Down
12 changes: 6 additions & 6 deletions subtle-encoding/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "subtle-encoding"
description = """
Encoders and decoders for common data encodings (base64, bech32, hex)
which avoid data-dependent branching/table lookups and therefore
provide "best effort" constant time. Useful for encoding/decoding
secret values such as cryptographic keys.
"""
version = "0.4.1" # Also update html_root_url in lib.rs when bumping this
Encoders and decoders for common data encodings (base64, bech32, hex)
which avoid data-dependent branching/table lookups and therefore
provide "best effort" constant time. Useful for encoding/decoding
secret values such as cryptographic keys.
"""
version = "0.5.0" # Also update html_root_url in lib.rs when bumping this
authors = ["Tony Arcieri <tony@iqlusion.io>"]
license = "Apache-2.0 OR MIT"
edition = "2018"
Expand Down
12 changes: 3 additions & 9 deletions subtle-encoding/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,12 @@
//!
//! [hex]: https://docs.rs/subtle-encoding/latest/subtle_encoding/hex/index.html
//! [base64]: https://docs.rs/subtle-encoding/latest/subtle_encoding/base64/index.html
//! [bech32]: https://docs.rs/subtle-encoding/0.2.3/subtle_encoding/bech32/index.html
//! [bech32]: https://docs.rs/subtle-encoding/latest/subtle_encoding/bech32/index.html

#![no_std]
#![deny(
missing_docs,
rust_2018_idioms,
trivial_casts,
unused_lifetimes,
unused_qualifications
)]
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
#![forbid(unsafe_code)]
#![doc(html_root_url = "https://docs.rs/subtle-encoding/0.4.1")]
#![doc(html_root_url = "https://docs.rs/subtle-encoding/0.5.0")]

#[cfg(feature = "alloc")]
#[macro_use]
Expand Down

0 comments on commit 319965a

Please sign in to comment.