std.digest.ripemd

  • Computes RIPEMD-160 hashes of arbitrary data. RIPEMD-160 hashes are 20 byte quantities
  • that are like a checksum or CRC, but are more robust. *

Category Functions
Template API RIPEMD160 

OOP API RIPEMD160Digest 
Helpers ripemd160Of 

  • This module conforms to the APIs defined in std.digest. To understand the
  • differences between the template and the OOP API, see std.digest.
  • This module publicly imports std.digest and can be used as a stand-alone
  • module.

    License

  • CTFE:
  • Digests do not work in CTFE

    Authors

    Kai Nacke
  • The algorithm was designed by Hans Dobbertin, Antoon Bosselaers, and Bart Preneel.
  • The D implementation is a direct translation of the ANSI C implementation by Antoon Bosselaers.
  • References:
  • Source: std/digest/ripemd.d *