#key-pair #blake2b #hashing #ethereum

keypair-rs

Keypair secp256k1 with blake2b hashing, keypairs similar to ethereum

2 releases

0.1.1 Apr 8, 2023
0.1.0 Apr 8, 2023

#21 in #blake2b

32 downloads per month

MIT/Apache

7KB
102 lines

KeyPair-rs

Keypair-rs is simple rust library for generating keypairs like used in ethreum. It is based on the sec256k1 library. For hashing it uses the blake2b algorithm.

Usage

use keypair::Keypair;

fn main() {
    let keypair = Keypair::generate();
    println!("public_key: {:?}", keypair.public_key);
    println!("private_key: {:?}", keypair.private_key);
    println!("address: {:?}", keypair.address());
    let message = "hello world".to_string();
    let signature = keypair.sign(message.clone()).unwrap();
    println!("signature: {:?}", signature);
    assert!(keypair.verify(&message, &signature).unwrap());
    
}

Dependencies

~6MB
~65K SLoC