| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Glue code for MD5 implementation for PPC assembler |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * Based on generic implementation. |
|---|
| 5 | 6 | * |
|---|
| 6 | 7 | * Copyright (c) 2015 Markus Stockhausen <stockhausen@collogia.de> |
|---|
| 7 | | - * |
|---|
| 8 | | - * This program is free software; you can redistribute it and/or modify it |
|---|
| 9 | | - * under the terms of the GNU General Public License as published by the Free |
|---|
| 10 | | - * Software Foundation; either version 2 of the License, or (at your option) |
|---|
| 11 | | - * any later version. |
|---|
| 12 | | - * |
|---|
| 13 | 8 | */ |
|---|
| 14 | 9 | |
|---|
| 15 | 10 | #include <crypto/internal/hash.h> |
|---|
| 16 | 11 | #include <linux/init.h> |
|---|
| 17 | 12 | #include <linux/module.h> |
|---|
| 18 | 13 | #include <linux/mm.h> |
|---|
| 19 | | -#include <linux/cryptohash.h> |
|---|
| 20 | 14 | #include <linux/types.h> |
|---|
| 21 | 15 | #include <crypto/md5.h> |
|---|
| 22 | 16 | #include <asm/byteorder.h> |
|---|