Add hw accelerated for stm32 aesccm_16_64_256#59
Closed
WilliamTakeshi wants to merge 4 commits into
Closed
Conversation
8a216f2 to
b95a7e9
Compare
chrysn
reviewed
Jun 9, 2026
| AeadTag::AesCcm16_64_128(tag) | ||
| } | ||
| AeadKey::AesCcm16_64_256(_) => todo!(), | ||
| AeadKey::AesCcm16_64_256(_) => { |
Member
There was a problem hiding this comment.
Can at least the AES part be accelerated (albeit then with more software layer on top of it, which we don't have), or not even that?
For if nothing can be done in hardware, then this impl would just not do 16-64-256 and leave it to a software impl, 🤷.
b95a7e9 to
aca6a65
Compare
Collaborator
Author
|
closed because already merged in #62 |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
continuation of #58
this PR only implements hardware accelerated for
Stm32wba55Cal.Because
CCMdoesn't work for 256 bit keys on Nrf54l15, its not as easy to impl