UInt16 variance test //FREEBIE

pull/1/head
mjewkes 11 years ago committed by Frederic Jacobs
parent 60e3b14599
commit 2031a95092

@ -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 {

Loading…
Cancel
Save