diff --git a/Adler32Context.cs b/Adler32Context.cs index 09128e0..1b1103c 100644 --- a/Adler32Context.cs +++ b/Adler32Context.cs @@ -1,4 +1,4 @@ -// /*************************************************************************** +// /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // @@ -27,7 +27,7 @@ // License along with this library; if not, see . // // ---------------------------------------------------------------------------- -// Copyright © 2011-2016 Natalia Portillo +// Copyright © 2011-2017 Natalia Portillo // ****************************************************************************/ using System; diff --git a/CDChecksums.cs b/CDChecksums.cs index 4ad090c..706603f 100644 --- a/CDChecksums.cs +++ b/CDChecksums.cs @@ -1,4 +1,4 @@ -// /*************************************************************************** +// /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // @@ -27,7 +27,7 @@ // along with this program.If not, see. // // ---------------------------------------------------------------------------- -// Copyright © 2011-2016 Natalia Portillo +// Copyright © 2011-2017 Natalia Portillo // ECC algorithm from ECM(c) 2002-2011 Neill Corlett // ****************************************************************************/ diff --git a/CRC16Context.cs b/CRC16Context.cs index 777d361..1ab16d1 100644 --- a/CRC16Context.cs +++ b/CRC16Context.cs @@ -1,4 +1,4 @@ -// /*************************************************************************** +// /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // @@ -27,7 +27,7 @@ // License along with this library; if not, see . // // ---------------------------------------------------------------------------- -// Copyright © 2011-2016 Natalia Portillo +// Copyright © 2011-2017 Natalia Portillo // ****************************************************************************/ using System.Text; diff --git a/CRC32Context.cs b/CRC32Context.cs index 774c335..b560b94 100644 --- a/CRC32Context.cs +++ b/CRC32Context.cs @@ -1,4 +1,4 @@ -// /*************************************************************************** +// /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // @@ -27,7 +27,7 @@ // License along with this library; if not, see . // // ---------------------------------------------------------------------------- -// Copyright © 2011-2016 Natalia Portillo +// Copyright © 2011-2017 Natalia Portillo // ****************************************************************************/ using System.Text; diff --git a/CRC64Context.cs b/CRC64Context.cs index 84827ba..10b616a 100644 --- a/CRC64Context.cs +++ b/CRC64Context.cs @@ -1,4 +1,4 @@ -// /*************************************************************************** +// /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // @@ -27,7 +27,7 @@ // License along with this library; if not, see . // // ---------------------------------------------------------------------------- -// Copyright © 2011-2016 Natalia Portillo +// Copyright © 2011-2017 Natalia Portillo // ****************************************************************************/ using System.Text; diff --git a/ChangeLog b/ChangeLog index 92c2362..7f3355d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,21 @@ +2017-05-19 Natalia Portillo + + * MD5Context.cs: + * SHA1Context.cs: + * ReedSolomon.cs: + * CDChecksums.cs: + * CRC64Context.cs: + * CRC32Context.cs: + * CRC16Context.cs: + * SHA384Context.cs: + * SHA256Context.cs: + * SHA512Context.cs: + * Adler32Context.cs: + * SpamSumContext.cs: + * FletcherContext.cs: + * RIPEMD160Context.cs: + * AssemblyInfo.cs: Updated copyright string. + 2017-05-19 Natalia Portillo * AssemblyInfo.cs: Bumped version to 3.3.99.0. diff --git a/FletcherContext.cs b/FletcherContext.cs index b92924a..f0df45e 100644 --- a/FletcherContext.cs +++ b/FletcherContext.cs @@ -1,4 +1,4 @@ -// /*************************************************************************** +// /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // @@ -27,7 +27,7 @@ // License along with this library; if not, see . // // ---------------------------------------------------------------------------- -// Copyright © 2011-2016 Natalia Portillo +// Copyright © 2011-2017 Natalia Portillo // ****************************************************************************/ // Disabled because the speed is abnormally slow diff --git a/MD5Context.cs b/MD5Context.cs index 40681e4..9f6614c 100644 --- a/MD5Context.cs +++ b/MD5Context.cs @@ -1,4 +1,4 @@ -// /*************************************************************************** +// /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // @@ -27,7 +27,7 @@ // License along with this library; if not, see . // // ---------------------------------------------------------------------------- -// Copyright © 2011-2016 Natalia Portillo +// Copyright © 2011-2017 Natalia Portillo // ****************************************************************************/ using System.Security.Cryptography; diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index ed0256d..b5ffac7 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ using System.Runtime.CompilerServices; [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Claunia.com")] [assembly: AssemblyProduct("")] -[assembly: AssemblyCopyright("Copyright © 2011-2016 Natalia Portillo")] +[assembly: AssemblyCopyright("Copyright © 2011-2017 Natalia Portillo")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/RIPEMD160Context.cs b/RIPEMD160Context.cs index 1a8055b..f18f31e 100644 --- a/RIPEMD160Context.cs +++ b/RIPEMD160Context.cs @@ -1,4 +1,4 @@ -// /*************************************************************************** +// /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // @@ -27,7 +27,7 @@ // License along with this library; if not, see . // // ---------------------------------------------------------------------------- -// Copyright © 2011-2016 Natalia Portillo +// Copyright © 2011-2017 Natalia Portillo // ****************************************************************************/ using System.Security.Cryptography; diff --git a/ReedSolomon.cs b/ReedSolomon.cs index 8fa7302..537b4c2 100644 --- a/ReedSolomon.cs +++ b/ReedSolomon.cs @@ -1,4 +1,4 @@ -// /*************************************************************************** +// /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // @@ -27,7 +27,7 @@ // along with this program. If not, see . // // ---------------------------------------------------------------------------- -// Copyright © 2011-2016 Natalia Portillo +// Copyright © 2011-2017 Natalia Portillo // Copyright (C) 1996 Phil Karn // Copyright (C) 1995 Robert Morelos-Zaragoza // Copyright (C) 1995 Hari Thirumoorthy diff --git a/SHA1Context.cs b/SHA1Context.cs index dcfb6df..658ee5f 100644 --- a/SHA1Context.cs +++ b/SHA1Context.cs @@ -1,4 +1,4 @@ -// /*************************************************************************** +// /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // @@ -27,7 +27,7 @@ // License along with this library; if not, see . // // ---------------------------------------------------------------------------- -// Copyright © 2011-2016 Natalia Portillo +// Copyright © 2011-2017 Natalia Portillo // ****************************************************************************/ using System.Security.Cryptography; diff --git a/SHA256Context.cs b/SHA256Context.cs index 96244ae..ba65509 100644 --- a/SHA256Context.cs +++ b/SHA256Context.cs @@ -1,4 +1,4 @@ -// /*************************************************************************** +// /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // @@ -27,7 +27,7 @@ // License along with this library; if not, see . // // ---------------------------------------------------------------------------- -// Copyright © 2011-2016 Natalia Portillo +// Copyright © 2011-2017 Natalia Portillo // ****************************************************************************/ using System.Security.Cryptography; diff --git a/SHA384Context.cs b/SHA384Context.cs index 689c604..50d31c8 100644 --- a/SHA384Context.cs +++ b/SHA384Context.cs @@ -1,4 +1,4 @@ -// /*************************************************************************** +// /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // @@ -27,7 +27,7 @@ // License along with this library; if not, see . // // ---------------------------------------------------------------------------- -// Copyright © 2011-2016 Natalia Portillo +// Copyright © 2011-2017 Natalia Portillo // ****************************************************************************/ using System.Security.Cryptography; diff --git a/SHA512Context.cs b/SHA512Context.cs index a1b94cc..fe7cd08 100644 --- a/SHA512Context.cs +++ b/SHA512Context.cs @@ -1,4 +1,4 @@ -// /*************************************************************************** +// /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // @@ -27,7 +27,7 @@ // License along with this library; if not, see . // // ---------------------------------------------------------------------------- -// Copyright © 2011-2016 Natalia Portillo +// Copyright © 2011-2017 Natalia Portillo // ****************************************************************************/ using System.Security.Cryptography; diff --git a/SpamSumContext.cs b/SpamSumContext.cs index 1f968b8..9b1b45c 100644 --- a/SpamSumContext.cs +++ b/SpamSumContext.cs @@ -1,4 +1,4 @@ -// /*************************************************************************** +// /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // @@ -27,7 +27,7 @@ // License along with this library; if not, see . // // ---------------------------------------------------------------------------- -// Copyright © 2011-2016 Natalia Portillo +// Copyright © 2011-2017 Natalia Portillo // ****************************************************************************/ // Based on ssdeep