From 8028a85ffeb6ed5680b46df6fafb249b2e153c01 Mon Sep 17 00:00:00 2001
From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com>
Date: Sat, 2 May 2020 18:12:20 -0700
Subject: [PATCH] Fixes copyright headers
---
.../Accounting/Security/AccountSecurity.cs | 21 +++++++++++++++++++
.../Security/Argon2PasswordProtection.cs | 21 +++++++++++++++++++
.../Security/MD5PasswordProtection.cs | 21 +++++++++++++++++++
.../Security/PBKDF2PasswordProtection.cs | 21 +++++++++++++++++++
.../Security/SHA1PasswordProtection.cs | 21 +++++++++++++++++++
.../Security/SHA2PasswordProtection.cs | 21 +++++++++++++++++++
.../Configuration/EmailConfiguration.cs | 21 +++++++++++++++++++
.../Configuration/ServerConfiguration.cs | 3 ++-
.../Converters/Point3dConverter.cs | 3 ++-
9 files changed, 151 insertions(+), 2 deletions(-)
diff --git a/Projects/Scripts/Accounting/Security/AccountSecurity.cs b/Projects/Scripts/Accounting/Security/AccountSecurity.cs
index 34375ee8d..1f02e07aa 100644
--- a/Projects/Scripts/Accounting/Security/AccountSecurity.cs
+++ b/Projects/Scripts/Accounting/Security/AccountSecurity.cs
@@ -1,3 +1,24 @@
+/*************************************************************************
+ * ModernUO *
+ * Copyright (C) 2019-2020 - ModernUO Development Team *
+ * Email: hi@modernuo.com *
+ * File: AccountSecurity.cs *
+ * Created: 2020/05/01 - Updated: 2020/05/02 *
+ * *
+ * 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 3 of the License, or *
+ * (at your option) any later version. *
+ * *
+ * This program is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+ * GNU General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program. If not, see . *
+ *************************************************************************/
+
using System;
namespace Server.Accounting.Security
diff --git a/Projects/Scripts/Accounting/Security/Argon2PasswordProtection.cs b/Projects/Scripts/Accounting/Security/Argon2PasswordProtection.cs
index 3d7cc0611..c6fef378b 100644
--- a/Projects/Scripts/Accounting/Security/Argon2PasswordProtection.cs
+++ b/Projects/Scripts/Accounting/Security/Argon2PasswordProtection.cs
@@ -1,3 +1,24 @@
+/*************************************************************************
+ * ModernUO *
+ * Copyright (C) 2019-2020 - ModernUO Development Team *
+ * Email: hi@modernuo.com *
+ * File: Argon2PasswordProtection.cs *
+ * Created: 2020/05/01 - Updated: 2020/05/02 *
+ * *
+ * 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 3 of the License, or *
+ * (at your option) any later version. *
+ * *
+ * This program is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+ * GNU General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program. If not, see . *
+ *************************************************************************/
+
namespace Server.Accounting.Security
{
public class Argon2PasswordProtection : IPasswordProtection
diff --git a/Projects/Scripts/Accounting/Security/MD5PasswordProtection.cs b/Projects/Scripts/Accounting/Security/MD5PasswordProtection.cs
index bdb3902cc..b5464f7dc 100644
--- a/Projects/Scripts/Accounting/Security/MD5PasswordProtection.cs
+++ b/Projects/Scripts/Accounting/Security/MD5PasswordProtection.cs
@@ -1,3 +1,24 @@
+/*************************************************************************
+ * ModernUO *
+ * Copyright (C) 2019-2020 - ModernUO Development Team *
+ * Email: hi@modernuo.com *
+ * File: MD5PasswordProtection.cs *
+ * Created: 2020/05/01 - Updated: 2020/05/02 *
+ * *
+ * 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 3 of the License, or *
+ * (at your option) any later version. *
+ * *
+ * This program is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+ * GNU General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program. If not, see . *
+ *************************************************************************/
+
using System;
using System.Security.Cryptography;
using System.Text;
diff --git a/Projects/Scripts/Accounting/Security/PBKDF2PasswordProtection.cs b/Projects/Scripts/Accounting/Security/PBKDF2PasswordProtection.cs
index 672efc6d5..1a70b36e8 100644
--- a/Projects/Scripts/Accounting/Security/PBKDF2PasswordProtection.cs
+++ b/Projects/Scripts/Accounting/Security/PBKDF2PasswordProtection.cs
@@ -1,3 +1,24 @@
+/*************************************************************************
+ * ModernUO *
+ * Copyright (C) 2019-2020 - ModernUO Development Team *
+ * Email: hi@modernuo.com *
+ * File: PBKDF2PasswordProtection.cs *
+ * Created: 2020/04/30 - Updated: 2020/05/01 *
+ * *
+ * 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 3 of the License, or *
+ * (at your option) any later version. *
+ * *
+ * This program is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+ * GNU General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program. If not, see . *
+ *************************************************************************/
+
using System;
using System.Buffers.Binary;
using System.Security.Cryptography;
diff --git a/Projects/Scripts/Accounting/Security/SHA1PasswordProtection.cs b/Projects/Scripts/Accounting/Security/SHA1PasswordProtection.cs
index 97cf0dcf9..8c4f34f9a 100644
--- a/Projects/Scripts/Accounting/Security/SHA1PasswordProtection.cs
+++ b/Projects/Scripts/Accounting/Security/SHA1PasswordProtection.cs
@@ -1,3 +1,24 @@
+/*************************************************************************
+ * ModernUO *
+ * Copyright (C) 2019-2020 - ModernUO Development Team *
+ * Email: hi@modernuo.com *
+ * File: SHA1PasswordProtection.cs *
+ * Created: 2020/05/01 - Updated: 2020/05/02 *
+ * *
+ * 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 3 of the License, or *
+ * (at your option) any later version. *
+ * *
+ * This program is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+ * GNU General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program. If not, see . *
+ *************************************************************************/
+
using System;
using System.Security.Cryptography;
using System.Text;
diff --git a/Projects/Scripts/Accounting/Security/SHA2PasswordProtection.cs b/Projects/Scripts/Accounting/Security/SHA2PasswordProtection.cs
index a58aaa18f..5bf5b6617 100644
--- a/Projects/Scripts/Accounting/Security/SHA2PasswordProtection.cs
+++ b/Projects/Scripts/Accounting/Security/SHA2PasswordProtection.cs
@@ -1,3 +1,24 @@
+/*************************************************************************
+ * ModernUO *
+ * Copyright (C) 2019-2020 - ModernUO Development Team *
+ * Email: hi@modernuo.com *
+ * File: SHA2PasswordProtection.cs *
+ * Created: 2020/05/01 - Updated: 2020/05/02 *
+ * *
+ * 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 3 of the License, or *
+ * (at your option) any later version. *
+ * *
+ * This program is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+ * GNU General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program. If not, see . *
+ *************************************************************************/
+
using System;
using System.Security.Cryptography;
using System.Text;
diff --git a/Projects/Scripts/Configuration/EmailConfiguration.cs b/Projects/Scripts/Configuration/EmailConfiguration.cs
index ea75d8e3c..842bee43d 100644
--- a/Projects/Scripts/Configuration/EmailConfiguration.cs
+++ b/Projects/Scripts/Configuration/EmailConfiguration.cs
@@ -1,3 +1,24 @@
+/*************************************************************************
+ * ModernUO *
+ * Copyright (C) 2019-2020 - ModernUO Development Team *
+ * Email: hi@modernuo.com *
+ * File: EmailConfiguration.cs *
+ * Created: 2019/10/04 - Updated: 2020/05/02 *
+ * *
+ * 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 3 of the License, or *
+ * (at your option) any later version. *
+ * *
+ * This program is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+ * GNU General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program. If not, see . *
+ *************************************************************************/
+
using System.IO;
using System.Text.Json.Serialization;
using MimeKit;
diff --git a/Projects/Server/Configuration/ServerConfiguration.cs b/Projects/Server/Configuration/ServerConfiguration.cs
index 32753b31a..b3647481a 100644
--- a/Projects/Server/Configuration/ServerConfiguration.cs
+++ b/Projects/Server/Configuration/ServerConfiguration.cs
@@ -2,7 +2,8 @@
* ModernUO *
* Copyright (C) 2019-2020 - ModernUO Development Team *
* Email: hi@modernuo.com *
- * File: Configuration.cs - Created: 2019/10/04 - Updated: 2020/01/19 *
+ * File: ServerConfiguration.cs *
+ * Created: 2019/10/04 - Updated: 2020/05/02 *
* *
* 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 *
diff --git a/Projects/Server/JsonConfiguration/Converters/Point3dConverter.cs b/Projects/Server/JsonConfiguration/Converters/Point3dConverter.cs
index 5fd00d1ee..cfeb12207 100644
--- a/Projects/Server/JsonConfiguration/Converters/Point3dConverter.cs
+++ b/Projects/Server/JsonConfiguration/Converters/Point3dConverter.cs
@@ -2,7 +2,8 @@
* ModernUO *
* Copyright (C) 2019-2020 - ModernUO Development Team *
* Email: hi@modernuo.com *
- * File: MapConverter.cs - Created: 2020/04/12 - Updated: 2020/05/02 *
+ * File: Point3dConverter.cs *
+ * Created: 2020/04/12 - Updated: 2020/05/02 *
* *
* 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 *