Compare commits

..

No commits in common. "64c75085f40a2e76872705a56f8fce51dcda25b9" and "d0019a93f0cfbf15b7c11c8d8e6cf6e434e32d05" have entirely different histories.

5 changed files with 4 additions and 31 deletions

View File

@ -1,25 +1,3 @@
# Keyfork v0.3.2
This is another bugfix release, allowing the derivation of Shard keys.
### Changes in keyfork:
```
6ffcdc3 add derivation path for Shard keys
```
# Keyfork v0.3.1
This is a bugfix release, resolving an issue with Keyfork Shard not having a
exit condition for when a valid QR code was scanned.
### Changes in keyfork-shard:
```
d0019a9 keyfork-shard: break loop when receiving valid QR code
```
# Keyfork v0.3.0
The Wizard is Dead. Long Live the Mnemonic Generator.

4
Cargo.lock generated
View File

@ -1797,7 +1797,7 @@ dependencies = [
[[package]]
name = "keyfork"
version = "0.3.2"
version = "0.3.0"
dependencies = [
"base64",
"card-backend-pcsc",
@ -1967,7 +1967,7 @@ dependencies = [
[[package]]
name = "keyfork-shard"
version = "0.3.3"
version = "0.3.2"
dependencies = [
"aes-gcm",
"anyhow",

View File

@ -1,6 +1,6 @@
[package]
name = "keyfork-shard"
version = "0.3.3"
version = "0.3.2"
edition = "2021"
license = "AGPL-3.0-only"

View File

@ -1,6 +1,6 @@
[package]
name = "keyfork"
version = "0.3.2"
version = "0.3.0"
edition = "2021"
license = "AGPL-3.0-only"

View File

@ -58,9 +58,6 @@ pub enum Path {
/// The Disaster Recovery index.
DisasterRecovery,
/// The Shard index.
Shard,
}
impl std::fmt::Display for Path {
@ -74,7 +71,6 @@ impl Path {
match self {
Path::Default => "default",
Path::DisasterRecovery => "disaster-recovery",
Path::Shard => "shard",
}
}
@ -82,7 +78,6 @@ impl Path {
match self {
Self::Default => paths::OPENPGP.clone(),
Self::DisasterRecovery => paths::OPENPGP_DISASTER_RECOVERY.clone(),
Self::Shard => paths::OPENPGP_SHARD.clone(),
}
}
}