hare

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

README (580B)


      1 This module implements the bcrypt password hash based on Bruce Schneier's
      2 blowfish. This is a legacy algorithm which is not recommended for new users.
      3 
      4 This is a low-level module which implements cryptographic primitives. Direct use
      5 of cryptographic primitives is not recommended for non-experts, as incorrect use
      6 of these primitives can easily lead to the introduction of security
      7 vulnerabilities. Non-experts are advised to use the high-level operations
      8 available in the top-level [[crypto::]] module.
      9 
     10 Be advised that Hare's cryptography implementations have not been audited.