-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add wycheproof tests for AES CMAC #4344
Conversation
tests/wycheproof/test_cmac.py
Outdated
tag = binascii.unhexlify(wycheproof.testcase["tag"]) | ||
|
||
# skip truncated tags, which we don't support in the API | ||
if wycheproof.valid and not len(tag) != 16: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This simplies to wycheproof.valid and len(tag) == 16
tests/wycheproof/test_cmac.py
Outdated
|
||
@pytest.mark.requires_backend_interface(interface=CipherBackend) | ||
@pytest.mark.wycheproof_tests("aes_cmac_test.json") | ||
def test_keywrap_with_padding(backend, wycheproof): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not right
tests/wycheproof/test_cmac.py
Outdated
from cryptography.hazmat.primitives.cmac import CMAC | ||
|
||
|
||
@pytest.mark.requires_backend_interface(interface=CipherBackend) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CMACBackend
* add wycheproof tests for AES CMAC * review feedback
refs #3331