-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from GiacomoPope/increase_coverage
Attempt to increase coverage
- Loading branch information
Showing
5 changed files
with
73 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import unittest | ||
import os | ||
from kyber_py.drbg.aes256_ctr_drbg import AES256_CTR_DRBG | ||
|
||
|
||
class TestDRBG(unittest.TestCase): | ||
""" | ||
Some small tests, as the general check for the DRBG is that | ||
the KAT vectors match with the assets within the mlkem and | ||
kyber tests. | ||
""" | ||
|
||
def test_no_seed(self): | ||
# If seed is none, os.urandom is used instead | ||
seed = None | ||
drbg = AES256_CTR_DRBG(seed) | ||
self.assertNotEqual(drbg.entropy_input, None) | ||
|
||
def test_bad_seed(self): | ||
# if the seed length is not 48, the code fails | ||
seed = b"1" | ||
self.assertRaises(ValueError, lambda: AES256_CTR_DRBG(seed)) | ||
seed = b"1" * 49 | ||
self.assertRaises(ValueError, lambda: AES256_CTR_DRBG(seed)) | ||
|
||
def test_personalization(self): | ||
# if the personalization is longer than 48 bytes, fail | ||
seed = os.urandom(48) | ||
personalization = os.urandom(24) | ||
drbg = AES256_CTR_DRBG(seed, personalization) | ||
self.assertEqual(AES256_CTR_DRBG, type(drbg)) | ||
|
||
def test_bad_personalization(self): | ||
# if the personalization is longer than 48 bytes, fail | ||
seed = os.urandom(48) | ||
personalization = os.urandom(49) | ||
self.assertRaises( | ||
ValueError, lambda: AES256_CTR_DRBG(seed, personalization) | ||
) | ||
|
||
def test_additional(self): | ||
drbg = AES256_CTR_DRBG() | ||
additional = os.urandom(24) | ||
b = drbg.random_bytes(32, additional) | ||
self.assertEqual(len(b), 32) | ||
self.assertEqual(type(b), bytes) | ||
|
||
def test_bad_additional(self): | ||
drbg = AES256_CTR_DRBG() | ||
additional = os.urandom(49) | ||
self.assertRaises( | ||
ValueError, lambda: drbg.random_bytes(32, additional) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters