@@ -1,4 +1,4 @@
-// SPDX-License-Identifier: GPL-2.0+ OR BSD-2-Clause
+// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Streebog hash function as specified by GOST R 34.11-2012 and
* described at https://tools.ietf.org/html/rfc6986
@@ -6,10 +6,6 @@
* Copyright (c) 2013 Alexey Degtyarev <alexey@renatasystems.org>
* Copyright (c) 2018 Vitaly Chikunov <vt@altlinux.org>
*
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the Free
- * Software Foundation; either version 2 of the License, or (at your option)
- * any later version.
*/
#include <crypto/internal/hash.h>
Streebog hash function implementation (crypto/streebog_generic.c) have GPL 2.0+ license boilerplate, but its SPDX identifier is mistagged as dual BSD/GPL. Correct the tag, while also removing the boilerplate. Fixes: e18957e8e87403 ("crypto: streebog - add Streebog hash function") Cc: Alexey Degtyarev <alexey@renatasystems.org> Cc: Vitaly Chikunov <vt@altlinux.org> Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com> --- crypto/streebog_generic.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-)