blob: a9d3dddc59fc439b16e739a252e120fb57c5670d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{- 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
newtype KeyIds = KeyIds [String]
|