-
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
[crypto] PSA SPAKE2+ introduction #32924
Merged
mergify
merged 3 commits into
project-chip:master
from
ArekBalysNordic:SPAKE2p_introduction
Apr 25, 2024
Merged
[crypto] PSA SPAKE2+ introduction #32924
mergify
merged 3 commits into
project-chip:master
from
ArekBalysNordic:SPAKE2p_introduction
Apr 25, 2024
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
Implement Matter's SPAKE2+ protocol using PSA crypto API. Use the PSA implementation in PASE session for nRF Connect platform. Signed-off-by: Damian Krolik <[email protected]>
Aligned Spake2+ algorithm to the newest PSA Crypto API version that allows useing the psa_pake_get_shared_key function.
PR #32924: Size comparison from 7aa7748 to ee1aa9e Full report (68 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, linux, mbed, nxp, psoc6, qpg, stm32, telink)
|
ArekBalysNordic
force-pushed
the
SPAKE2p_introduction
branch
from
April 10, 2024 12:00
ee1aa9e
to
f0b7593
Compare
PR #32924: Size comparison from 7aa7748 to f0b7593 Decreases (10 builds for nrfconnect)
Full report (82 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, linux, mbed, nrfconnect, nxp, psoc6, qpg, stm32, telink)
|
PR #32924: Size comparison from 7aa7748 to 0e19827 Decreases (10 builds for nrfconnect)
Full report (82 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, linux, mbed, nrfconnect, nxp, psoc6, qpg, stm32, telink)
|
ArekBalysNordic
force-pushed
the
SPAKE2p_introduction
branch
from
April 11, 2024 09:42
0e19827
to
07d85cc
Compare
PR #32924: Size comparison from 3c7c9b1 to 07d85cc Decreases (13 builds for linux, nrfconnect)
Full report (82 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, linux, mbed, nrfconnect, nxp, psoc6, qpg, stm32, telink)
|
pullapprove
bot
requested review from
andyg-apple,
anush-apple,
arkq,
carol-apple,
cecille,
chrisdecenzo,
chshu,
chulspro,
cliffamzn,
Damian-Nordic,
dhrishi,
harsha-rajendran,
hawk248,
hicklin,
jepenven-silabs,
jmartinez-silabs and
jmeg-sfy
April 11, 2024 12:03
pullapprove
bot
requested review from
saurabhst,
selissia,
sharadb-amazon,
tcarmelveilleux,
tecimovic,
tehampson,
tima-q,
tobiasgraf,
turon,
vivien-apple,
wiba-nordic,
woody-apple,
younghak-hwang,
yufengwangca and
yunhanw-google
April 11, 2024 12:03
Damian-Nordic
approved these changes
Apr 11, 2024
Restyled by gn
ArekBalysNordic
force-pushed
the
SPAKE2p_introduction
branch
from
April 11, 2024 12:28
07d85cc
to
0140ec0
Compare
PR #32924: Size comparison from 3c7c9b1 to 0140ec0 Decreases (13 builds for linux, nrfconnect)
Full report (82 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, linux, mbed, nrfconnect, nxp, psoc6, qpg, stm32, telink)
|
LuDuda
approved these changes
Apr 14, 2024
jmartinez-silabs
approved these changes
Apr 16, 2024
ArekBalysNordic
added a commit
to ArekBalysNordic/connectedhomeip
that referenced
this pull request
Apr 26, 2024
* [crypto] Add PSA SPAKE2+ implementation Implement Matter's SPAKE2+ protocol using PSA crypto API. Use the PSA implementation in PASE session for nRF Connect platform. Signed-off-by: Damian Krolik <[email protected]> * [crypto] Spake2+ alignments regarding the newest PSA version Aligned Spake2+ algorithm to the newest PSA Crypto API version that allows useing the psa_pake_get_shared_key function. * Alignments to the Matter Core. Restyled by gn --------- Signed-off-by: Damian Krolik <[email protected]> Co-authored-by: Damian Krolik <[email protected]>
mergify bot
pushed a commit
that referenced
this pull request
Apr 26, 2024
* [crypto] Add PSA SPAKE2+ implementation Implement Matter's SPAKE2+ protocol using PSA crypto API. Use the PSA implementation in PASE session for nRF Connect platform. * [crypto] Spake2+ alignments regarding the newest PSA version Aligned Spake2+ algorithm to the newest PSA Crypto API version that allows useing the psa_pake_get_shared_key function. * Alignments to the Matter Core. Restyled by gn --------- Signed-off-by: Damian Krolik <[email protected]> Co-authored-by: Damian Krolik <[email protected]>
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.
Implement Matter's SPAKE2+ protocol using PSA crypto API.
The SPAKE2+ protocol requires the PSA crypto API in version v1.1 and all Spake2p class methods which are used in Matter Core.
You can use it by enabling the
CHIP_CRYPTO_PSA_SPAKE2P
config.Aligned Spake2+ algorithm to the newest PSA Crypto API version that allows using the
psa_pake_get_shared_key
function.