| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Cryptographic API. |
|---|
| 3 | 4 | * Glue code for the SHA1 Secure Hash Algorithm assembler implementation |
|---|
| .. | .. |
|---|
| 8 | 9 | * Copyright (c) Andrew McDonald <andrew@mcdonald.org.uk> |
|---|
| 9 | 10 | * Copyright (c) Jean-Francois Dive <jef@linuxbe.org> |
|---|
| 10 | 11 | * Copyright (c) Mathias Krause <minipli@googlemail.com> |
|---|
| 11 | | - * |
|---|
| 12 | | - * This program is free software; you can redistribute it and/or modify it |
|---|
| 13 | | - * under the terms of the GNU General Public License as published by the Free |
|---|
| 14 | | - * Software Foundation; either version 2 of the License, or (at your option) |
|---|
| 15 | | - * any later version. |
|---|
| 16 | | - * |
|---|
| 17 | 12 | */ |
|---|
| 18 | 13 | |
|---|
| 19 | 14 | #include <crypto/internal/hash.h> |
|---|
| 20 | 15 | #include <linux/init.h> |
|---|
| 21 | 16 | #include <linux/module.h> |
|---|
| 22 | | -#include <linux/cryptohash.h> |
|---|
| 23 | 17 | #include <linux/types.h> |
|---|
| 24 | 18 | #include <crypto/sha.h> |
|---|
| 25 | 19 | #include <crypto/sha1_base.h> |
|---|