remove globalflow for key(pair)gen

This commit is contained in:
Jami Cogswell
2022-10-11 16:31:02 -04:00
parent e64825ff7a
commit 26f4abf12b
2 changed files with 64 additions and 64 deletions

View File

@@ -208,7 +208,7 @@ public class InsufficientKeySizeTest {
keyGen.init(keySize); // $ hasInsufficientKeySize
// BAD: Key size is less than 2048
kg.init(64); // $ hasInsufficientKeySize
kg.init(64); // $ MISSING: hasInsufficientKeySize
}
//! refactor this to use expected-value tag and combine with above method
@@ -224,7 +224,7 @@ public class InsufficientKeySizeTest {
keyPairGen.initialize(keySize); // $ hasInsufficientKeySize
// BAD: Key size is less than 2048
kpg.initialize(1024); // $ hasInsufficientKeySize
kpg.initialize(1024); // $ MISSING: hasInsufficientKeySize
}
//! refactor this to use expected-value tag and combine with above method