 | HsOpenSSL-0.3: (Part of) OpenSSL binding for Haskell | Contents | Index |
|
|
|
| Description |
| Asymmetric cipher decryption using encrypted symmetric key. This
is an opposite of OpenSSL.EVP.Seal.
|
|
| Synopsis |
|
|
|
| Documentation |
|
| open |
| :: Cipher | symmetric cipher algorithm to use
| | -> String | encrypted symmetric key to decrypt the input string
| | -> String | IV
| | -> PKey | private key to decrypt the symmetric key
| | -> String | input string to decrypt
| | -> String | decrypted string
| | open lazilly decrypts a stream of data. The input string
doesn't necessarily have to be finite.
|
|
|
| openBS |
| :: Cipher | symmetric cipher algorithm to use
| | -> String | encrypted symmetric key to decrypt the input string
| | -> String | IV
| | -> PKey | private key to decrypt the symmetric key
| | -> ByteString | input string to decrypt
| | -> ByteString | decrypted string
| | openBS decrypts a chunk of data.
|
|
|
| openLBS |
| :: Cipher | symmetric cipher algorithm to use
| | -> String | encrypted symmetric key to decrypt the input string
| | -> String | IV
| | -> PKey | private key to decrypt the symmetric key
| | -> LazyByteString | input string to decrypt
| | -> LazyByteString | decrypted string
| | openLBS lazilly decrypts a stream of data. The input string
doesn't necessarily have to be finite.
|
|
|
| Produced by Haddock version 0.8 |