Note: Replace "for loop" with standard memcpy if possible.
| 457 | |
| 458 | // Note: Replace "for loop" with standard memcpy if possible. |
| 459 | void MD5::memcpy (uint1 *output, uint1 *input, uint4 len){ |
| 460 | |
| 461 | unsigned int i; |
| 462 | |
| 463 | for (i = 0; i < len; i++) |
| 464 | output[i] = input[i]; |
| 465 | } |
| 466 | |
| 467 | |
| 468 |
nothing calls this directly
no outgoing calls
no test coverage detected