crypto-sodium 0.0.3.0 → 0.0.3.1
raw patch · 4 files changed
+7/−3 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- crypto-sodium.cabal +2/−2
- lib/Crypto/Encrypt/Box.hs +2/−0
- lib/Crypto/Encrypt/Secretbox.hs +2/−0
- lib/Crypto/Key.hs +1/−1
crypto-sodium.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 2d2774b6f1a9692b774ae9bb3b592030db69473bc4e1ee2aa080184a78ce4a10+-- hash: 8f2d927fece7ed762df312f2f4393f5e471fe0068b66c7aa76c07a7ca34e220f name: crypto-sodium-version: 0.0.3.0+version: 0.0.3.1 synopsis: Easy-and-safe-to-use high-level cryptography based on Sodium description: This is a collection of high-level cryptographic primitives based on <https://libsodium.io/ Sodium>, spiced up with extra type-safety
lib/Crypto/Encrypt/Box.hs view
@@ -2,6 +2,8 @@ -- -- SPDX-License-Identifier: MPL-2.0 +{-# OPTIONS_HADDOCK not-home #-}+ -- ! This module merely re-exports definitions from the corresponding -- ! module in NaCl and alters the Haddock to make it more specific -- ! to crypto-sodium. So, the docs should be kept more-or-less in sync.
lib/Crypto/Encrypt/Secretbox.hs view
@@ -2,6 +2,8 @@ -- -- SPDX-License-Identifier: MPL-2.0 +{-# OPTIONS_HADDOCK not-home #-}+ -- ! This module merely re-exports definitions from the corresponding -- ! module in NaCl and alters the Haddock to make it more specific -- ! to crypto-sodium. So, the docs should be kept more-or-less in sync.
lib/Crypto/Key.hs view
@@ -76,7 +76,7 @@ -- -- = Random key generation ----- The 'random' function is great at generating new secure secret keys.+-- The 'generate' function is great at generating new secure secret keys. module Crypto.Key ( type (!>=!)