process a block of data. indata and outdata may be the same memory
| 98 | |
| 99 | // process a block of data. indata and outdata may be the same memory |
| 100 | void cNullCipher::ProcessBlock(const void* indata, void* outdata) |
| 101 | { |
| 102 | memmove(outdata, indata, TripleDES_Encryption::BLOCKSIZE); |
| 103 | } |
| 104 | |
| 105 | ////////////////////////////////////////////////////////////////////////////// |
| 106 | // class cIDEA |