-
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
Make RandUtils.h use DRBG_get_bytes() #10465
Merged
tcarmelveilleux
merged 2 commits into
project-chip:master
from
tcarmelveilleux:refactor-RandU
Oct 14, 2021
Merged
Make RandUtils.h use DRBG_get_bytes() #10465
tcarmelveilleux
merged 2 commits into
project-chip:master
from
tcarmelveilleux:refactor-RandU
Oct 14, 2021
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
- Move RandUtils.* from lib/support to src/crypto to break dependency cycle w/ CHIPCryptoPAL.h - Make RandUtils functions use DRBG_get_bytes(), which avoids issues of `srand()` improperly initialized or dependencies on `rand()` in core SDK code. All random numbers in core protocols are supposed, by spec, to be generated using a crypto-based DRBG - Fix needless inclusions of RandUtils.h - Move all uses of `GetRandU*` to the new location/version - Fix minor usage of snprintf() for large hex strings in DnsSd to use BytesToHex(). Testing done: unit tests still pass. Cert tests still pass.
mspang
approved these changes
Oct 13, 2021
pullapprove
bot
requested review from
anush-apple,
balducci-apple,
bzbarsky-apple,
carol-apple,
chrisdecenzo,
chulspro,
Damian-Nordic,
franck-apple,
hawk248,
jelderton,
jepenven-silabs,
jmartinez-silabs,
LuDuda,
msandstedt,
pan-apple,
sagar-apple,
saurabhst,
shana-apple,
vivien-apple and
wbschiller
October 13, 2021 20:50
woody-apple
approved these changes
Oct 13, 2021
andy31415
approved these changes
Oct 13, 2021
Size increase report for "gn_qpg-example-build" from 2f0bae6
Full report output
|
bzbarsky-apple
approved these changes
Oct 13, 2021
Size increase report for "nrfconnect-example-build" from 2f0bae6
Full report output
|
Size increase report for "esp32-example-build" from 2f0bae6
Full report output
|
msandstedt
approved these changes
Oct 14, 2021
PR #10465: Size comparison from 2f0bae6 to 39e959b 12 builds
14 builds
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
crypto
examples
lib
review - approved
setup payload
spec
Mismatch between spec and implementation
transport
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.
Problem
RandUtils.h
'sGetRandU*
are usingrand()
which requires proper seeding to be useful and is not spec-compliant (since all random numbers in all protocols are supposed to be backed by DRBG).Change overview
dependency cycle w/ CHIPCryptoPAL.h
avoids issues of
srand()
improperly initialized ordependencies on
rand()
in core SDK code. All random numbersin core protocols are supposed, by spec, to be generated using
a crypto-based DRBG
GetRandU*
to the new location/versionto use BytesToHex().
Testing