hare

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

README (550B)


      1 The crypto::ecdh module implements eliptic-curve diffie hellman key generation
      2 for curves implemented in [[crypto::ec]].
      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.