hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

README (642B)


      1 This module implements the blake2b password hashing algorithm, bug-for-bug
      2 compatible with the classic OpenBSD implementation. It is not recommended except
      3 in cases of backwards-compatibility with legacy systems.
      4 
      5 This is a low-level module which implements cryptographic primitives. Direct use
      6 of cryptographic primitives is not recommended for non-experts, as incorrect use
      7 of these primitives can easily lead to the introduction of security
      8 vulnerabilities. Non-experts are advised to use the high-level operations
      9 available in the top-level [[crypto::]] module.
     10 
     11 Be advised that Hare's cryptography implementations have not been audited.