cipher-aes128 0.2.1 → 0.2.2
raw patch · 2 files changed
+1/−4 lines, 2 filesdep ~basesetup-changed
Dependency ranges changed: base
Files
- Setup.hs +0/−3
- cipher-aes128.cabal +1/−1
Setup.hs view
@@ -8,18 +8,15 @@ import System.Process import System.Directory import System.Exit-import Text.Groom main = defaultMainWithHooks hk where hk = simpleUserHooks { buildHook = \pd lbi uh bf -> do- print "yo yo yo" let ccProg = Program "gcc" undefined undefined undefined mConf = lookupProgram ccProg (withPrograms lbi) err = error "Could not determine C compiler" cc = locationPath . programLocation . maybe err id $ mConf b <- canUseAesIntrinsicsFlag cc- print (withPrograms lbi) let newWithPrograms1 = userSpecifyArgs "gcc" aesArgs (withPrograms lbi) newWithPrograms = userSpecifyArgs "ghc" aesArgsHC newWithPrograms1 buildHook simpleUserHooks pd (lbi {withPrograms = newWithPrograms }) uh bf
cipher-aes128.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: cipher-aes128-version: 0.2.1+version: 0.2.2 synopsis: AES128 using AES-NI when available. description: AES128 with crypto-api instances and a trampoline between Vincent Hanquez's C-based and x86 NI-based AES. Patches welcome to add additional high-performance backends (ARM?) license: BSD3