From 2031a95092c84495bd8ee63fd06cad3f69b501ab Mon Sep 17 00:00:00 2001 From: mjewkes Date: Fri, 1 Aug 2014 22:29:27 -0300 Subject: [PATCH] UInt16 variance test //FREEBIE --- Signal/test/util/CryptoToolsTest.m | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Signal/test/util/CryptoToolsTest.m b/Signal/test/util/CryptoToolsTest.m index c0c797f4e..c0df497e8 100644 --- a/Signal/test/util/CryptoToolsTest.m +++ b/Signal/test/util/CryptoToolsTest.m @@ -69,8 +69,10 @@ uint16_t b = [CryptoTools generateSecureRandomUInt16]; uint16_t c = [CryptoTools generateSecureRandomUInt16]; uint16_t d = [CryptoTools generateSecureRandomUInt16]; - // extremely unlikely to fail if any reasonable amount of entropy is going into d and d2 - test(!(a==b==c==d)); + + // extremely unlikely to fail if any reasonable amount of entropy is generated + BOOL same =((a==b) && (a==c) && (a==d)); + test (!same); } -(void) testKnownAesCipherFeedback {