- rdf_atom_md5(+Text, +Times, -MD5) is det
- Computes the MD5 hash from Text, which is an atom, string or list of
character codes. Times is an integer >= 1. When > 0, the MD5
algorithm is repeated Times times on the generated hash. This can be
used for password encryption algorithms to make generate-and-test
loops slow.
- deprecated
- - Obviously, password hash primitives do not belong in
this library. The library(crypto) from the \const{ssl} package
provides extensive support for hashes. The \const{clib} package
provides library(crypt) to access the OS (Unix) password hash
implementation as well as lightweight implementations of several
popular hashes.