| 36 | } |
| 37 | |
| 38 | void StreamCipher::ProcessString(byte *outString, const byte *inString, unsigned int length) |
| 39 | { |
| 40 | while(length--) |
| 41 | *outString++ = ProcessByte(*inString++); |
| 42 | } |
| 43 | |
| 44 | void StreamCipher::ProcessString(byte *inoutString, unsigned int length) |
| 45 | { |