From 51cdc5542c2f7ecaa34f1d4f42da17ce28c58656 Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Mon, 5 Jul 2021 03:54:29 +0200 Subject: [PATCH] licensing: fix license info for Crypto/{bn,ec} This code was part of Dolphin's relicensing from v2 to v2+ a while back, we just never updated these copyright headers. I double-checked that segher gave us permission to relicense this code to v2+ on 2015-05-16. --- Source/Core/Common/Crypto/bn.cpp | 3 +-- Source/Core/Common/Crypto/ec.cpp | 5 +---- Source/Core/Common/Crypto/ec.h | 3 +-- 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/Source/Core/Common/Crypto/bn.cpp b/Source/Core/Common/Crypto/bn.cpp index 339b269d39..fa38b4618d 100644 --- a/Source/Core/Common/Crypto/bn.cpp +++ b/Source/Core/Common/Crypto/bn.cpp @@ -1,6 +1,5 @@ // Copyright 2007,2008 Segher Boessenkool -// Licensed under the terms of the GNU GPL, version 2 -// http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +// SPDX-License-Identifier: GPL-2.0-or-later #include #include diff --git a/Source/Core/Common/Crypto/ec.cpp b/Source/Core/Common/Crypto/ec.cpp index 5d6099ae79..08a2aa00ea 100644 --- a/Source/Core/Common/Crypto/ec.cpp +++ b/Source/Core/Common/Crypto/ec.cpp @@ -1,9 +1,6 @@ // Copyright 2010 Dolphin Emulator Project -// SPDX-License-Identifier: GPL-2.0-or-later - // Copyright 2007,2008 Segher Boessenkool -// Licensed under the terms of the GNU GPL, version 2 -// http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +// SPDX-License-Identifier: GPL-2.0-or-later #include #include diff --git a/Source/Core/Common/Crypto/ec.h b/Source/Core/Common/Crypto/ec.h index 5b21dd96cc..1f42ad3e87 100644 --- a/Source/Core/Common/Crypto/ec.h +++ b/Source/Core/Common/Crypto/ec.h @@ -1,6 +1,5 @@ // Copyright 2007,2008 Segher Boessenkool -// Licensed under the terms of the GNU GPL, version 2 -// http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once