Note: Replace "for loop" with standard memset if possible.
| 468 | |
| 469 | // Note: Replace "for loop" with standard memset if possible. |
| 470 | void MD5::memset (uint1 *output, uint1 value, uint4 len){ |
| 471 | |
| 472 | unsigned int i; |
| 473 | |
| 474 | for (i = 0; i < len; i++) |
| 475 | output[i] = value; |
| 476 | } |
| 477 | |
| 478 | |
| 479 |
nothing calls this directly
no outgoing calls
no test coverage detected