.. | .. |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
---|
1 | 2 | /* |
---|
2 | 3 | * sha1_base.h - core logic for SHA-1 implementations |
---|
3 | 4 | * |
---|
4 | 5 | * Copyright (C) 2015 Linaro Ltd <ard.biesheuvel@linaro.org> |
---|
5 | | - * |
---|
6 | | - * This program is free software; you can redistribute it and/or modify |
---|
7 | | - * it under the terms of the GNU General Public License version 2 as |
---|
8 | | - * published by the Free Software Foundation. |
---|
9 | 6 | */ |
---|
| 7 | + |
---|
| 8 | +#ifndef _CRYPTO_SHA1_BASE_H |
---|
| 9 | +#define _CRYPTO_SHA1_BASE_H |
---|
10 | 10 | |
---|
11 | 11 | #include <crypto/internal/hash.h> |
---|
12 | 12 | #include <crypto/sha.h> |
---|
.. | .. |
---|
104 | 104 | *sctx = (struct sha1_state){}; |
---|
105 | 105 | return 0; |
---|
106 | 106 | } |
---|
| 107 | + |
---|
| 108 | +#endif /* _CRYPTO_SHA1_BASE_H */ |
---|