shithub: blake2

Download patch

ref: b9302b40bc4c762c4beae50a231429956533db1f
parent: eec32b7170d8dbe4eb59c9afad2ee9297393fb5b
author: CryptoManiac <balthazar.ad@gmail.com>
date: Sat Apr 30 19:53:42 EDT 2016

With "==" you will be allowed to set anything except valid values.

--- a/csharp/Blake2Sharp/Blake2BConfig.cs
+++ b/csharp/Blake2Sharp/Blake2BConfig.cs
@@ -25,7 +25,7 @@
 			get { return OutputSizeInBytes * 8; }
 			set
 			{
-				if (value % 8 == 0)
+				if (value % 8 != 0)
 					throw new ArgumentException("Output size must be a multiple of 8 bits");
 				OutputSizeInBytes = value / 8;
 			}
--