A rust library implementing secp256k1 ECDSA
/!\ This library is still experimental and the API may change
rust
let msg = "Hello World";
let password = "n00b";
let msg = msg.as_bytes();
let secret = hash256(password.as_bytes());
let secret = Scalar::from_bytes(&secret);
let pvk = PrivateKey::new(secret);
let sig = pvk.sign_from_buffer(&msg);
rust
let msg = "Hello World";
let msg = msg.as_bytes();
let pubk = PublicKey::from_secret(&secret);
pubk.verify_buffer(&msg, &sig);