Rust
Rust
ECDSA Sign Data and Verify Signature
See more ECC Examples
Demonstrates using the Elliptic Curve Digital Signature Algorithm to hash data and sign it. Also demonstrates how to verify the ECDSA signature.Chilkat Rust Downloads
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// To create an ECDSA signature, the data first needs to be hashed. Then the hash
// is signed.
// Use Chilkat Crypt2 to generate a hash for any of the following
// hash algorithms: SHA256, SHA384, SHA512, SHA1, MD5, MD2, HAVAL, RIPEMD128/160/256/320
let crypt = chilkat::Crypt2::new();
crypt.set_hash_algorithm("SHA256");
crypt.set_charset("utf-8");
crypt.set_encoding_mode("base64");
// Hash a string.
let hash1 = crypt.hash_string_enc("The quick brown fox jumps over the lazy dog").unwrap_or_default();
println!("hash1 = {}", hash1);
// Or hash a file..
let hash2 = crypt.hash_file_enc("qa_data/hamlet.xml").unwrap_or_default();
println!("hash2 = {}", hash2);
// (The Crypt2 API provides many other ways to hash data..)
// -----------------------------------------------------------
// An ECDSA private key is used for signing. The public key is for signature verification.
// Load our ECC private key.
// Our private key file contains this:
// // -----BEGIN PRIVATE KEY-----
// MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg3J8q/24D1sEKGdP9
// 72MGYElLGpw/a56Y3t6pfON3uhShRANCAATlSmoizyhAwoYZAOuFBATl07/1RR54
// a1Dzfm16grxJe666AGKR+bSs24hk7TEpaeCTvT8YOOM3l+xKFg7zq6Q9
// -----END PRIVATE KEY-----
let priv_key = chilkat::PrivateKey::new();
if priv_key.load_pem_file("qa_data/ecc/secp256r1-key-pkcs8.pem").is_err() {
println!("{}", priv_key.last_error_text());
return;
}
// We'll need a PRNG source for random number generation.
// Use Chilkat's PRNG (for the Fortuna PRNG algorithm).
let prng = chilkat::Prng::new();
// Sign the hash..
let ecdsa = chilkat::Ecc::new();
let Ok(ecdsa_sig_base64) = ecdsa.sign_hash_enc(&hash1, "base64", &priv_key, &prng) else {
println!("{}", ecdsa.last_error_text());
return;
};
println!("ECDSA signature = {}", ecdsa_sig_base64);
// -----------------------------------------------------------
// Now let's verify the signature using the public key.
let pub_key = chilkat::PublicKey::new();
if pub_key.load_from_file("qa_data/ecc/secp256r1-pubkey.pem").is_err() {
println!("{}", pub_key.last_error_text());
return;
}
let result = ecdsa.verify_hash_enc(&hash1, &ecdsa_sig_base64, "base64", &pub_key);
if result == 1 {
println!("Signature is valid.");
return;
}
if result == 0 {
println!("Signature is invalid.");
return;
}
if result < 0 {
println!("{}", ecdsa.last_error_text());
println!("The VerifyHashENC method call failed.");
return;
}