make clippy happy
This commit is contained in:
parent
c36fe0a1b1
commit
a8b2814b17
|
@ -11,7 +11,7 @@ fn secp256k1_test_suite() {
|
||||||
|
|
||||||
let tests = test_data()
|
let tests = test_data()
|
||||||
.unwrap()
|
.unwrap()
|
||||||
.remove(&"secp256k1".to_string())
|
.remove("secp256k1")
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
for seed_test in tests {
|
for seed_test in tests {
|
||||||
|
@ -70,7 +70,7 @@ fn secp256k1_test_suite() {
|
||||||
fn ed25519_test_suite() {
|
fn ed25519_test_suite() {
|
||||||
use ed25519_dalek::SigningKey;
|
use ed25519_dalek::SigningKey;
|
||||||
|
|
||||||
let tests = test_data().unwrap().remove(&"ed25519".to_string()).unwrap();
|
let tests = test_data().unwrap().remove("ed25519").unwrap();
|
||||||
|
|
||||||
for seed_test in tests {
|
for seed_test in tests {
|
||||||
let seed = seed_test.seed;
|
let seed = seed_test.seed;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
//!
|
//! Launch the Keyfork Server from using a mnemonic passed through standard input.
|
||||||
|
|
||||||
use keyfork_mnemonic::Mnemonic;
|
use keyfork_mnemonic::Mnemonic;
|
||||||
|
|
||||||
|
|
|
@ -113,7 +113,7 @@ mod tests {
|
||||||
async fn properly_derives_secp256k1() {
|
async fn properly_derives_secp256k1() {
|
||||||
let tests = test_data()
|
let tests = test_data()
|
||||||
.unwrap()
|
.unwrap()
|
||||||
.remove(&"secp256k1".to_string())
|
.remove("secp256k1")
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
for per_seed in tests {
|
for per_seed in tests {
|
||||||
|
@ -146,7 +146,7 @@ mod tests {
|
||||||
|
|
||||||
#[tokio::test]
|
#[tokio::test]
|
||||||
async fn properly_derives_ed25519() {
|
async fn properly_derives_ed25519() {
|
||||||
let tests = test_data().unwrap().remove(&"ed25519".to_string()).unwrap();
|
let tests = test_data().unwrap().remove("ed25519").unwrap();
|
||||||
|
|
||||||
for per_seed in tests {
|
for per_seed in tests {
|
||||||
let seed = &per_seed.seed;
|
let seed = &per_seed.seed;
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
[package]
|
||||||
|
name = "keyfork-derive-age"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
license = "AGPL-3.0-only"
|
||||||
|
|
||||||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
keyfork-derive-util = { workspace = true, default-features = false, features = ["ed25519"] }
|
||||||
|
keyforkd-client = { workspace = true }
|
||||||
|
smex = { workspace = true }
|
||||||
|
thiserror = "1.0.48"
|
||||||
|
bech32 = "0.11.0"
|
||||||
|
keyfork-derive-path-data = { workspace = true }
|
||||||
|
ed25519-dalek = "2.1.1"
|
|
@ -0,0 +1,69 @@
|
||||||
|
use std::{env, process::ExitCode, str::FromStr};
|
||||||
|
|
||||||
|
use keyfork_derive_path_data::paths;
|
||||||
|
use keyfork_derive_util::{DerivationPath, ExtendedPrivateKey, PathError};
|
||||||
|
use keyforkd_client::Client;
|
||||||
|
|
||||||
|
use ed25519_dalek::SigningKey;
|
||||||
|
|
||||||
|
type XPrv = ExtendedPrivateKey<SigningKey>;
|
||||||
|
|
||||||
|
/// Any error that can occur while deriving a key.
|
||||||
|
#[derive(Debug, thiserror::Error)]
|
||||||
|
pub enum Error {
|
||||||
|
/// The given path could not be parsed.
|
||||||
|
#[error("Could not parse the given path: {0}")]
|
||||||
|
PathFormat(#[from] PathError),
|
||||||
|
|
||||||
|
/// The request to derive data failed.
|
||||||
|
#[error("Unable to perform key derivation request: {0}")]
|
||||||
|
KeyforkdClient(#[from] keyforkd_client::Error),
|
||||||
|
}
|
||||||
|
|
||||||
|
#[allow(missing_docs)]
|
||||||
|
pub type Result<T, E = Error> = std::result::Result<T, E>;
|
||||||
|
|
||||||
|
fn validate(path: &str) -> Result<DerivationPath> {
|
||||||
|
let index = paths::AGE.inner().first().unwrap();
|
||||||
|
|
||||||
|
let path = DerivationPath::from_str(path)?;
|
||||||
|
assert!(
|
||||||
|
path.len() >= 2,
|
||||||
|
"Expected path of at least m/{index}/account_id'"
|
||||||
|
);
|
||||||
|
|
||||||
|
let given_index = path.iter().next().expect("checked .len() above");
|
||||||
|
assert_eq!(
|
||||||
|
index, given_index,
|
||||||
|
"Expected derivation path starting with m/{index}, got: {given_index}",
|
||||||
|
);
|
||||||
|
|
||||||
|
Ok(path)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn run() -> Result<(), Box<dyn std::error::Error>> {
|
||||||
|
let mut args = env::args();
|
||||||
|
let program_name = args.next().expect("program name");
|
||||||
|
let args = args.collect::<Vec<_>>();
|
||||||
|
let path = match args.as_slice() {
|
||||||
|
[path] => validate(path)?,
|
||||||
|
_ => panic!("Usage: {program_name} path"),
|
||||||
|
};
|
||||||
|
|
||||||
|
let mut client = Client::discover_socket()?;
|
||||||
|
// TODO: should this key be clamped to Curve25519 specs?
|
||||||
|
let xprv: XPrv = client.request_xprv(&path)?;
|
||||||
|
let hrp = bech32::Hrp::parse("AGE-SECRET-KEY-")?;
|
||||||
|
let age_key = bech32::encode::<bech32::Bech32>(hrp, &xprv.private_key().to_bytes())?;
|
||||||
|
println!("{}", age_key.to_uppercase());
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn main() -> ExitCode {
|
||||||
|
if let Err(e) = run() {
|
||||||
|
eprintln!("Error: {e}");
|
||||||
|
ExitCode::FAILURE
|
||||||
|
} else {
|
||||||
|
ExitCode::SUCCESS
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
//!
|
//! Query the Keyfork Server to generate a hex-encoded key for a given algorithm.
|
||||||
|
|
||||||
use std::{env, process::ExitCode, str::FromStr};
|
use std::{env, process::ExitCode, str::FromStr};
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
//!
|
//! Query the Keyfork Servre to derive an OpenPGP Secret Key.
|
||||||
|
|
||||||
use std::{env, process::ExitCode, str::FromStr};
|
use std::{env, process::ExitCode, str::FromStr};
|
||||||
|
|
||||||
|
|
|
@ -41,9 +41,9 @@
|
||||||
//! }
|
//! }
|
||||||
//! ```
|
//! ```
|
||||||
|
|
||||||
///
|
#[allow(missing_docs)]
|
||||||
pub mod private_key;
|
pub mod private_key;
|
||||||
///
|
#[allow(missing_docs)]
|
||||||
pub mod public_key;
|
pub mod public_key;
|
||||||
|
|
||||||
pub use {private_key::ExtendedPrivateKey, public_key::ExtendedPublicKey};
|
pub use {private_key::ExtendedPrivateKey, public_key::ExtendedPublicKey};
|
||||||
|
|
|
@ -15,7 +15,7 @@ fn secp256k1() {
|
||||||
|
|
||||||
let tests = test_data()
|
let tests = test_data()
|
||||||
.unwrap()
|
.unwrap()
|
||||||
.remove(&"secp256k1".to_string())
|
.remove("secp256k1")
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
for per_seed in tests {
|
for per_seed in tests {
|
||||||
|
@ -62,7 +62,7 @@ fn secp256k1() {
|
||||||
fn ed25519() {
|
fn ed25519() {
|
||||||
use ed25519_dalek::SigningKey;
|
use ed25519_dalek::SigningKey;
|
||||||
|
|
||||||
let tests = test_data().unwrap().remove(&"ed25519".to_string()).unwrap();
|
let tests = test_data().unwrap().remove("ed25519").unwrap();
|
||||||
|
|
||||||
for per_seed in tests {
|
for per_seed in tests {
|
||||||
let seed = &per_seed.seed;
|
let seed = &per_seed.seed;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
//!
|
//! Combine OpenPGP shards and output the hex-encoded secret.
|
||||||
|
|
||||||
use std::{
|
use std::{
|
||||||
env,
|
env,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
//!
|
//! Decrypt a single OpenPGP shard and encapsulate it for remote transport.
|
||||||
|
|
||||||
use std::{
|
use std::{
|
||||||
env,
|
env,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
//!
|
//! Combine OpenPGP shards using remote transport and output the hex-encoded secret.
|
||||||
|
|
||||||
use std::{
|
use std::{
|
||||||
env,
|
env,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
//!
|
//! Split a hex-encoded secret into OpenPGP shards
|
||||||
|
|
||||||
use std::{env, path::PathBuf, process::ExitCode, str::FromStr};
|
use std::{env, path::PathBuf, process::ExitCode, str::FromStr};
|
||||||
|
|
||||||
|
|
|
@ -185,7 +185,7 @@ impl EncryptedMessage {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
/// Encoding and decoding shards using OpenPGP.
|
||||||
pub struct OpenPGP<P: PromptHandler> {
|
pub struct OpenPGP<P: PromptHandler> {
|
||||||
p: PhantomData<P>,
|
p: PhantomData<P>,
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
//!
|
#![allow(missing_docs)]
|
||||||
|
|
||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||||
.decode()?,
|
.decode()?,
|
||||||
);
|
);
|
||||||
|
|
||||||
if let Some(symbol) = scanner.scan_image(&image).get(0) {
|
if let Some(symbol) = scanner.scan_image(&image).first() {
|
||||||
println!("{}", String::from_utf8_lossy(symbol.data()));
|
println!("{}", String::from_utf8_lossy(symbol.data()));
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
//!
|
//! A Symbol represents some form of encoded data.
|
||||||
|
|
||||||
use super::sys;
|
use super::sys;
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
//!
|
#![allow(missing_docs)]
|
||||||
|
|
||||||
use keyfork_crossterm::{
|
use keyfork_crossterm::{
|
||||||
execute,
|
execute,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
//!
|
//! Generate entropy of a given size, encoded as hex.
|
||||||
|
|
||||||
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||||
let bit_size: usize = std::env::args()
|
let bit_size: usize = std::env::args()
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
//!
|
//! Generate a mnemonic from hex-encoded input.
|
||||||
|
|
||||||
use keyfork_mnemonic::Mnemonic;
|
use keyfork_mnemonic::Mnemonic;
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
//!
|
#![allow(missing_docs)]
|
||||||
|
|
||||||
use std::io::{stdin, stdout};
|
use std::io::{stdin, stdout};
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
//! A terminal prompt handler.
|
||||||
|
//!
|
||||||
|
//! This prompt handler uses a raw terminal device to read inputs and uses ANSI escape codes to
|
||||||
|
//! provide formatting for prompts. Because of these reasons, it is not intended to be
|
||||||
|
//! machine-readable.
|
||||||
|
|
||||||
use std::{
|
use std::{
|
||||||
borrow::Borrow,
|
borrow::Borrow,
|
||||||
io::{stderr, stdin, BufRead, BufReader, Read, Stderr, Stdin, Write},
|
io::{stderr, stdin, BufRead, BufReader, Read, Stderr, Stdin, Write},
|
||||||
|
|
Loading…
Reference in New Issue