|
|
|
| Description |
| Asymmetric cipher decryption using encrypted symmetric key. This
is an opposite of OpenSSL.EVP.Seal.
|
|
| Synopsis |
|
|
|
| Documentation |
|
|
| :: KeyPair key | | | => Cipher | symmetric cipher algorithm to use
| | -> String | encrypted symmetric key to decrypt the input string
| | -> String | IV
| | -> key | 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.
|
|
|
|
| :: KeyPair key | | | => Cipher | symmetric cipher algorithm to use
| | -> String | encrypted symmetric key to decrypt the input string
| | -> String | IV
| | -> key | private key to decrypt the symmetric key
| | -> ByteString | input string to decrypt
| | -> ByteString | decrypted string
| | openBS decrypts a chunk of data.
|
|
|
|
| :: KeyPair key | | | => Cipher | symmetric cipher algorithm to use
| | -> String | encrypted symmetric key to decrypt the input string
| | -> String | IV
| | -> key | private key to decrypt the symmetric key
| | -> ByteString | input string to decrypt
| | -> ByteString | decrypted string
| | openLBS lazilly decrypts a stream of data. The input string
doesn't necessarily have to be finite.
|
|
|
| Produced by Haddock version 2.4.2 |