wallet_standard 0.5.1

An implementation of the solana wallet standard in rust
Documentation
1
2
3
4
5
6
7
8
9
10
pub use decrypt::*;
pub use encrypt::*;

mod decrypt;
mod encrypt;

/// Default encryption algorithm in `NaCl`.
/// Curve25519 scalar multiplication, Salsa20 secret-key encryption, and
/// Poly1305 one-time authentication.
pub const CIPHER_X25519_XSALSA20_POLY1305: &str = "x25519-xsalsa20-poly1305";