Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ pqcrypto-falcon = {version = "0.4.1", optional=true}
# Signatures
ed25519-dalek = {version = "2.2.0", features=["rand_core"], optional=true}
schnorrkel = {version = "0.11.5", optional=true}
ecdsa = {version = "0.16.9", features=["verify"], optional=true}
ecdsa = {version = "0.16.9", optional=true}
k256 = {version = "0.13.4", features=["ecdsa"], optional=true}
ml-dsa = {version = "0.0.4", optional=true}
ed448 = {version = "0.4.0", optional=true}
Expand Down
22 changes: 22 additions & 0 deletions x59pk-fmt/src/derive.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
//! # Derive From
//!
//! ## Address Schemes
//!
//! - [ ] Liberato-Address-Scheme (BLAKE2)
//! - [ ] Variable Digest
//! - [ ] Reserve Blake2s for 28-32 bytes
//! - [ ] Reserve Blake2b for 32-64 bytes
//! - [ ] BLAKE3-Address-Scheme (BLAKE3)
//!
//! ## Deriviation
//!
//! - [ ] Public-Key
//! - [ ] Formats
//! - [ ] Bytes

use fixedstr::str64;

/// # DeriveFrom
pub struct DeriveFromAPI {
_type: str64
}
5 changes: 4 additions & 1 deletion x59pk-fmt/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
//! - Hexadecimal (prefered)
//! - Base32
//! - Base58
//! - Base64

/// # Attribute
///
Expand All @@ -36,4 +37,6 @@ pub mod label;

pub mod errors;

pub mod prelude;
pub mod prelude;

pub mod derive;