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:
authorSamuel Neves <sneves@users.noreply.github.com>2016-05-04 18:26:43 +0300
committerSamuel Neves <sneves@users.noreply.github.com>2016-05-04 18:26:43 +0300
commit6740feadeaf93e41e3d566cbec4600e955ca786f (patch)
tree486e5f970a093870ba5ddf1701cdceba3c6dfc7b
parenteec32b7170d8dbe4eb59c9afad2ee9297393fb5b (diff)
parentb9302b40bc4c762c4beae50a231429956533db1f (diff)
Merge pull request #23 from CryptoManiac/master
Parameter validation issue.
-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;
}