Merge rust-bitcoin/rust-bitcoin#4596: Correct hash algorithm name in RIPEMD160 documentation

e9f7ae4b74 Correct hash algorithm name in RIPEMD160 documentation (David Klank)

Pull request description:

  Corrected the documentation comment for the `new()` method in the RIPEMD160 `HashEngine` struct. The comment incorrectly stated it constructs a "SHA256 hash engine" when it actually constructs a RIPEMD160 hash engine.

ACKs for top commit:
  tcharding:
    ACK e9f7ae4b74
  apoelstra:
    ACK e9f7ae4b74a4d2728b4b64bbb8fc2db92fefec3a; successfully ran local tests

Tree-SHA512: 3935f502709dc8ec570d7f112efbc4d55349f7072342ad0278ee2525bbf39ca1d7f60bcef0ad0a3bdcf3e67b2548d89bc01435532d848595a9824f4ec9e74bb7
This commit is contained in:
merge-script 2025-06-05 14:33:49 +00:00
commit 02e857582c
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ pub struct HashEngine {
}
impl HashEngine {
/// Constructs a new SHA256 hash engine.
/// Constructs a new RIPEMD160 hash engine.
pub const fn new() -> Self {
Self {
h: [0x67452301, 0xefcdab89, 0x98badcfe, 0x10325476, 0xc3d2e1f0],