Skip to content

Commit e8a127b

Browse files
iamjpottsest31
authored andcommitted
Fix typeo in variable name in rsa-irc example
1 parent 0c5970d commit e8a127b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/rsa-irc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
3131
let hash_hex :String = hash.as_ref().iter()
3232
.map(|b| format!("{:02x}", b))
3333
.collect();
34-
println!("sha-512 fingerprint: {hash_tex}");
34+
println!("sha-512 fingerprint: {hash_hex}");
3535
println!("{pem_serialized}");
3636
println!("{}", cert.serialize_private_key_pem());
3737
std::fs::create_dir_all("certs/")?;

0 commit comments

Comments
 (0)