p2panda-rs 0.2.1

All the things a panda needs
Documentation
1
2
3
4
5
6
7
8
9
10
// SPDX-License-Identifier: AGPL-3.0-or-later

//! Generates and maintains Ed25519 key pairs with the secret and public (Author) counterparts.
mod author;
mod error;
mod key_pair;

pub use author::Author;
pub use error::{AuthorError, KeyPairError};
pub use key_pair::KeyPair;