17 lines
374 B
Haskell
17 lines
374 B
Haskell
{- git-annex crypto types
|
|
-
|
|
- Copyright 2011 Joey Hess <joey@kitenet.net>
|
|
-
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
-}
|
|
|
|
module Types.Crypto where
|
|
|
|
-- XXX ideally, this would be a locked memory region
|
|
newtype Cipher = Cipher String
|
|
|
|
data EncryptedCipher = EncryptedCipher String KeyIds
|
|
deriving (Ord, Eq)
|
|
|
|
newtype KeyIds = KeyIds [String]
|
|
deriving (Ord, Eq)
|