.. | .. |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
---|
1 | 2 | /* |
---|
2 | 3 | * sha512_base.h - core logic for SHA-512 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_SHA512_BASE_H |
---|
| 9 | +#define _CRYPTO_SHA512_BASE_H |
---|
10 | 10 | |
---|
11 | 11 | #include <crypto/internal/hash.h> |
---|
12 | 12 | #include <crypto/sha.h> |
---|
.. | .. |
---|
129 | 129 | *sctx = (struct sha512_state){}; |
---|
130 | 130 | return 0; |
---|
131 | 131 | } |
---|
| 132 | + |
---|
| 133 | +#endif /* _CRYPTO_SHA512_BASE_H */ |
---|