Skip to content

Commit 344cff3

Browse files
committed
Copyright dates :face_with_rolling_eyes:
1 parent d2552ef commit 344cff3

6 files changed

Lines changed: 13 additions & 13 deletions

File tree

licence.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
The MIT License (MIT)
22
Copyright (c) 2006 Damien Miller djm@mindrot.org (jBCrypt)
33
Copyright (c) 2013 Ryan D. Emerle (.Net port)
4-
Copyright (c) 2016/2017 Chris McKee (.Net-core port / patches)
4+
Copyright (c) 2016/2020 Chris McKee (.Net-core port / patches)
55

6-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files
7-
(the �Software�), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,
8-
merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished
6+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files
7+
(the �Software�), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,
8+
merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished
99
to do so, subject to the following conditions:
1010

1111
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1212

13-
THE SOFTWARE IS PROVIDED �AS IS�, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
15-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
13+
THE SOFTWARE IS PROVIDED �AS IS�, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
15+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
1616
IN THE SOFTWARE.

src/BCrypt.Net.MainPackage/BCrypt.Net.Package.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PackageId>BCrypt.Net-Next</PackageId>
1313
<Title>BCrypt .Net</Title>
1414
<Authors>Chris McKee, Ryan D. Emerl, Damien Miller</Authors>
15-
<Copyright>2006-2019 Chris McKee, Ryan D. Emerl, Damien Miller</Copyright>
15+
<Copyright>2006-2020 Chris McKee, Ryan D. Emerl, Damien Miller</Copyright>
1616
<Summary>BCrypt.Net, C# implementation of BCrypt, OpenBSD-style Blowfish password hashing</Summary>
1717
<Description>A fixed, enhanced and namespace compatible version of BCrypt.Net port of jBCrypt implemented in C#. It uses a variant of the Blowfish encryption algorithm’s keying schedule, and introduces a work factor, which allows you to determine how expensive the hash function will be, allowing the algorithm to be "future-proof".</Description>
1818
<License>https://github.com/BcryptNet/bcrypt.net/blob/master/licence.txt</License>

src/BCrypt.Net.StrongName/BCrypt.Net.StrongName.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PackageId>BCrypt.Net-Next.StrongName</PackageId>
1313
<Title>BCrypt .Net (Strong Named)</Title>
1414
<Authors>Chris McKee, Ryan D. Emerl, Damien Miller</Authors>
15-
<Copyright>2006-2019 Chris McKee, Ryan D. Emerl, Damien Miller</Copyright>
15+
<Copyright>2006-2020 Chris McKee, Ryan D. Emerl, Damien Miller</Copyright>
1616
<Summary>BCrypt.Net, C# implementation of BCrypt, OpenBSD-style Blowfish password hashing</Summary>
1717
<Description>A fixed, enhanced and namespace compatible version of BCrypt.Net port of jBCrypt implemented in C#. It uses a variant of the Blowfish encryption algorithm’s keying schedule, and introduces a work factor, which allows you to determine how expensive the hash function will be, allowing the algorithm to be "future-proof".</Description>
1818
<License>https://github.com/BcryptNet/bcrypt.net/blob/master/licence.txt</License>
@@ -54,7 +54,7 @@
5454
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
5555
<Reference Include="System" />
5656
</ItemGroup>
57-
57+
5858
<ItemGroup>
5959
<Compile Remove="..\BCrypt.Net\Properties\AssemblyInfo.cs" />
6060
</ItemGroup>

src/BCrypt.Net.UnitTests/BCrypt.Net.UnitTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<AssemblyName>BCrypt.Net.UnitTests</AssemblyName>
55
<PackageId>BCrypt.Net.UnitTests</PackageId>
6-
<TargetFramework>netcoreapp3.0</TargetFramework>
6+
<TargetFramework>netcoreapp3.1</TargetFramework>
77
</PropertyGroup>
88

99
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">

src/BCrypt.Net/BCrypt.Net.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PackageId>BCrypt.Net-Next</PackageId>
1313
<Title>BCrypt .Net</Title>
1414
<Authors>Chris McKee, Ryan D. Emerl, Damien Miller</Authors>
15-
<Copyright>2006-2019 Chris McKee, Ryan D. Emerl, Damien Miller</Copyright>
15+
<Copyright>2006-2020 Chris McKee, Ryan D. Emerl, Damien Miller</Copyright>
1616
<Summary>BCrypt.Net, C# implementation of BCrypt, OpenBSD-style Blowfish password hashing</Summary>
1717
<Description>A fixed, enhanced and namespace compatible version of BCrypt.Net port of jBCrypt implemented in C#. It uses a variant of the Blowfish encryption algorithm’s keying schedule, and introduces a work factor, which allows you to determine how expensive the hash function will be, allowing the algorithm to be "future-proof".</Description>
1818
<PackageTags>bcrypt;BCrypt.Net;cryptography;hashing;password;security,hash;crypto;blowfish;gdpr</PackageTags>

src/BCrypt.Net/BCrypt.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
The MIT License (MIT)
33
Copyright (c) 2006 Damien Miller djm@mindrot.org (jBCrypt)
44
Copyright (c) 2013 Ryan D. Emerle (.Net port)
5-
Copyright (c) 2016/2018 Chris McKee (.Net-core port / patches / new features)
5+
Copyright (c) 2016/2020 Chris McKee (.Net-core port / patches / new features)
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files
88
(the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,

0 commit comments

Comments
 (0)