hare

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

README (491B)


      1 This module provides the poly1305 MAC as defined in RFC 8439.
      2 
      3 This is a low-level module which implements cryptographic primitives. Direct use
      4 of cryptographic primitives is not recommended for non-experts, as incorrect use
      5 of these primitives can easily lead to the introduction of security
      6 vulnerabilities. Non-experts are advised to use the high-level operations
      7 available in the top-level [[crypto::]] module.
      8 
      9 Be advised that Hare's cryptography implementations have not been audited.