[Overview][Constants][Types][Classes][Index] |
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
On-the-fly Blowfish decryption stream
Source position: blowfish.pp line 76
type TBlowFishDeCryptStream = class(TBlowFishStream) end; |
||
public |
||
function Read(); override; |
|
Read data from the stream |
function Seek(); override; |
|
Set the stream position. |
|
On-the-fly Blowfish decryption stream |
|
| | ||
|
Parent class for blowfish encryption/decryption streams |
|
| | ||
| | ||
| | ||
The TBlowFishDecryptStream provides On-the-fly Blowfish decryption: all data that is read from the source stream is decrypted before it is placed in the output buffer. The source stream must be specified when the TBlowFishDecryptStream instance is created. The Decryption key must also be created when the stream instance is created, and must be the same key as the one used when encrypting the data.
This is a read-only stream: it is seekable only in a forward direction, and data can only be read from it, writing is not possible. For writing data so it is encrypted, the TBlowFishEncryptStream stream must be used.
|
Create a new instance of the TBlowFishStream class |
|
|
On-the-fly Blowfish encryption stream |