Warning: This file is not a C or C++ file. It does not have highlighting.
| 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
|---|---|
| 2 | /* |
| 3 | * MD5 optimized for PowerPC |
| 4 | */ |
| 5 | |
| 6 | void ppc_md5_transform(u32 *state, const u8 *data, size_t nblocks); |
| 7 | |
| 8 | static void md5_blocks(struct md5_block_state *state, |
| 9 | const u8 *data, size_t nblocks) |
| 10 | { |
| 11 | ppc_md5_transform(state->h, data, nblocks); |
| 12 | } |
| 13 |
Warning: This file is not a C or C++ file. It does not have highlighting.
