-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
[privacy] Implement privacy decrypt support in message layer #22783
Merged
Conversation
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
pullapprove
bot
requested review from
andy31415,
anush-apple,
arkq,
Byungjoo-Lee,
bzbarsky-apple,
carol-apple,
chrisdecenzo,
chshu,
chulspro,
Damian-Nordic,
dhrishi,
electrocucaracha,
emargolis,
franck-apple,
gjc13,
harimau-qirex,
harsha-rajendran,
hawk248,
isiu-apple,
jelderton,
jepenven-silabs,
jmartinez-silabs,
jtung-apple,
kghost,
lazarkov,
LuDuda,
msandstedt,
mspang and
rgoliver
September 20, 2022 22:04
robszewczyk
approved these changes
Jan 20, 2023
PR #22783: Size comparison from 6648ef2 to 2486fe0 Increases (35 builds for cyw30739, esp32, linux, mbed, nrfconnect, psoc6, qpg, telink)
Full report (35 builds for cyw30739, esp32, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
bzbarsky-apple
approved these changes
Jan 20, 2023
bzbarsky-apple
dismissed
woody-apple’s stale review
January 20, 2023 21:48
The compat issue has been addressed: the new code is backwards-compatible with the old.
lecndav
pushed a commit
to lecndav/connectedhomeip
that referenced
this pull request
Mar 22, 2023
…-chip#22783) * [session][test] Add short payload secure unicast message test vector. * [privacy] Add privacy parsing to message layer. [test] Add test of private group. * [privacy] test vector passes decrypt, but fails message counter. * [privacy] Remove negative PrivacyDecrypt testVectors. * [restyle] * [privacy] Fix type conversion issue in CI. * [privacy] rebase * [privacy] Update message header codec tests to test P-flag. * [privacy] Remove superfluous comments. * [test] Add negative test capability and tests for wrong MIC. * [test] Add test for dropping pase / secure unicast when privacy enabled. * [test] Add test for dropping private group message with wrong MIC. * [privacy] Resolve review comments. * [privacy] Split per-key processing into dedicated static function. * [privacy] Add test case for CHIP_CONFIG_PRIVACY_ACCEPT_NONSPEC_SVE2. * [privacy][test] Update name of unit test for group replay protection. * [privacy] Make PacketHeader::PrivacyHeader a utility function. * [privacy] Resolve comments by bzbarsky-apple. * [privacy] Fixed const and partialPacketHeader naming. * [privacy] Fixed doc error - mismatched param name. * [privacy] Add issue ref to TODO.
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.
Issue Being Resolved
Change overview
Adds support for privacy decryption of group messages per spec.
Includes unit test to verify the feature.