Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/BLAKE2/BLAKE2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCryptoManiac <balthazar.ad@gmail.com>2016-04-30 23:53:42 +0300
committerCryptoManiac <balthazar.ad@gmail.com>2016-04-30 23:53:42 +0300
commitb9302b40bc4c762c4beae50a231429956533db1f (patch)
tree486e5f970a093870ba5ddf1701cdceba3c6dfc7b
parenteec32b7170d8dbe4eb59c9afad2ee9297393fb5b (diff)
With "==" you will be allowed to set anything except valid values.
-rw-r--r--csharp/Blake2Sharp/Blake2BConfig.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp/Blake2Sharp/Blake2BConfig.cs b/csharp/Blake2Sharp/Blake2BConfig.cs
index 6d70184..0bb2ada 100644
--- a/csharp/Blake2Sharp/Blake2BConfig.cs
+++ b/csharp/Blake2Sharp/Blake2BConfig.cs
@@ -25,7 +25,7 @@ namespace Blake2Sharp
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;
}