Additional QA clean-up
This commit is contained in:
parent
b3a1506d82
commit
d0ac50c1af
@ -12,7 +12,6 @@
|
|||||||
-- data types are compatible with the encoding specified in RFC 7748.
|
-- data types are compatible with the encoding specified in RFC 7748.
|
||||||
--
|
--
|
||||||
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
|
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
|
||||||
{-# LANGUAGE MagicHash #-}
|
|
||||||
module Crypto.PubKey.Curve448
|
module Crypto.PubKey.Curve448
|
||||||
( SecretKey
|
( SecretKey
|
||||||
, PublicKey
|
, PublicKey
|
||||||
|
|||||||
6
QA.hs
6
QA.hs
@ -23,10 +23,10 @@ newtype ModuleName = ModuleName String
|
|||||||
|
|
||||||
allowedExtensions =
|
allowedExtensions =
|
||||||
[ ScopedTypeVariables, BangPatterns, ForeignFunctionInterface, DeriveDataTypeable, ViewPatterns, GeneralizedNewtypeDeriving, ExistentialQuantification, EmptyDataDecls
|
[ ScopedTypeVariables, BangPatterns, ForeignFunctionInterface, DeriveDataTypeable, ViewPatterns, GeneralizedNewtypeDeriving, ExistentialQuantification, EmptyDataDecls
|
||||||
, TypeFamilies, KindSignatures ]
|
, TypeFamilies, KindSignatures, DataKinds ]
|
||||||
perModuleAllowedExtensions =
|
perModuleAllowedExtensions =
|
||||||
[ ("Crypto/Hash/Utils.hs", [MagicHash])
|
[ ("Crypto/Hash/Utils.hs", [MagicHash])
|
||||||
, ("Crypto/Hash/SHAKE.hs", [UndecidableInstances,TypeOperators,ConstraintKinds,DataKinds,KindSignatures])
|
, ("Crypto/Hash/SHAKE.hs", [UndecidableInstances,TypeOperators,ConstraintKinds])
|
||||||
, ("Crypto/Internal/ByteArray.hs", [MagicHash, UnboxedTuples])
|
, ("Crypto/Internal/ByteArray.hs", [MagicHash, UnboxedTuples])
|
||||||
, ("Crypto/Internal/Memory.hs", [MagicHash, UnboxedTuples])
|
, ("Crypto/Internal/Memory.hs", [MagicHash, UnboxedTuples])
|
||||||
, ("Crypto/Internal/Compat.hs", [CPP])
|
, ("Crypto/Internal/Compat.hs", [CPP])
|
||||||
@ -42,8 +42,10 @@ perModuleAllowedExtensions =
|
|||||||
, ("Crypto/Cipher/AES.hs", [CPP])
|
, ("Crypto/Cipher/AES.hs", [CPP])
|
||||||
, ("Crypto/Cipher/Types/Block.hs", [Rank2Types, MultiParamTypeClasses])
|
, ("Crypto/Cipher/Types/Block.hs", [Rank2Types, MultiParamTypeClasses])
|
||||||
, ("Crypto/Cipher/Types/AEAD.hs", [Rank2Types])
|
, ("Crypto/Cipher/Types/AEAD.hs", [Rank2Types])
|
||||||
|
, ("Crypto/Cipher/CAST5/Primitive.hs", [MagicHash])
|
||||||
, ("Crypto/Cipher/Camellia/Primitive.hs", [MagicHash])
|
, ("Crypto/Cipher/Camellia/Primitive.hs", [MagicHash])
|
||||||
, ("Crypto/Cipher/DES/Primitive.hs", [FlexibleInstances])
|
, ("Crypto/Cipher/DES/Primitive.hs", [FlexibleInstances])
|
||||||
|
, ("Crypto/Cipher/Twofish/Primitive.hs", [MagicHash])
|
||||||
, ("Crypto/PubKey/Curve25519.hs", [MagicHash])
|
, ("Crypto/PubKey/Curve25519.hs", [MagicHash])
|
||||||
, ("Crypto/Number/Compat.hs", [UnboxedTuples,MagicHash,CPP])
|
, ("Crypto/Number/Compat.hs", [UnboxedTuples,MagicHash,CPP])
|
||||||
]
|
]
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user