| 137 | } |
| 138 | |
| 139 | void Arc4::decrypt(CheckStatusWrapper* status, unsigned int length, const void* from, void* to) |
| 140 | { |
| 141 | status->init(); |
| 142 | de->transform(length, from, to); |
| 143 | } |
| 144 | |
| 145 | Cypher* Arc4::createCypher(unsigned int l, const void* key) |
| 146 | { |
no test coverage detected