#include <cel_crypt.h>

Static Public Member Functions | |
| static AutoPtr< CipherStream > | create (Storage *inStorage, const BlockCipher *inCipher, u32 inSalt) |
| static AutoPtr< CipherStream > | create (Stream *inStream, const BlockCipher *inCipher) |
Definition at line 127 of file cel_crypt.h.
| static AutoPtr<CipherStream> Celartem::CipherStream::create | ( | Storage * | inStorage, | |
| const BlockCipher * | inCipher, | |||
| u32 | inSalt | |||
| ) | [static] |
This method creates a new CipherStream instance for write.
| inCipher | Pointer to a Cipher instance. It should be properly initialized before calling this method. | |
| inSalt | A salt value. |
| static AutoPtr<CipherStream> Celartem::CipherStream::create | ( | Stream * | inStream, | |
| const BlockCipher * | inCipher | |||
| ) | [static] |
This method creates a new CipherStream instance for read.
| inCipher | Pointer to a Cipher instance. It should be properly initialized before calling this method. |