aboutsummaryrefslogtreecommitdiff
path: root/src/Data/Digest
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <bbaren@google.com>2018-04-28 15:26:04 -0700
committerGravatar Benjamin Barenblat <bbaren@google.com>2018-04-28 15:26:04 -0700
commit22b190b55afcbbd2e014339ead081a552fea4287 (patch)
tree9b2ecd376d3430b51a795c6f9c6e62c84066d3b8 /src/Data/Digest
parent403466452dcda68763b82f409310fc41a3a6a9ab (diff)
Switch initialism style to follow the rest of the Haskell world
Diffstat (limited to 'src/Data/Digest')
-rw-r--r--src/Data/Digest/Internal.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Data/Digest/Internal.hs b/src/Data/Digest/Internal.hs
index be88e68..859f765 100644
--- a/src/Data/Digest/Internal.hs
+++ b/src/Data/Digest/Internal.hs
@@ -21,10 +21,10 @@ import Data.Char (intToDigit)
import Data.Word (Word8)
import Foreign (Ptr)
-import Internal.Base (EvpMd)
+import Internal.Base (EVPMD)
-- | A cryptographic hash function.
-newtype Algorithm = Algorithm (Ptr EvpMd)
+newtype Algorithm = Algorithm (Ptr EVPMD)
-- | The result of a hash operation.
newtype Digest = Digest ByteString