From 92ca32bf0084cc1b9b24d30ae2610f84c9f751ff Mon Sep 17 00:00:00 2001 From: Ximin Luo Date: Tue, 30 Jun 2020 13:19:45 +0100 Subject: [PATCH] Random: don't expose prgNewEntropy, see discussion on #323 --- Crypto/Random.hs | 1 - Crypto/Random/Types.hs | 1 - 2 files changed, 2 deletions(-) diff --git a/Crypto/Random.hs b/Crypto/Random.hs index fb628552..1295923e 100644 --- a/Crypto/Random.hs +++ b/Crypto/Random.hs @@ -27,7 +27,6 @@ module Crypto.Random , DRG(..) , PRG(..) , prgNew - , prgNewEntropy -- * Random abstraction , MonadRandom(..) , MonadPseudoRandom diff --git a/Crypto/Random/Types.hs b/Crypto/Random/Types.hs index b1f7dbdb..b0bb7bf2 100644 --- a/Crypto/Random/Types.hs +++ b/Crypto/Random/Types.hs @@ -12,7 +12,6 @@ module Crypto.Random.Types , MonadPseudoRandom , DRG(..) , PRG(..) - , prgNewEntropy , prgNew , withDRG ) where