[runtime] Add better control over the random hashing seed #15207
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.
This changes the runtime to look for the
SWIFT_DETERMINISTIC_HASHING
environment variable, and, if it is set to1
during process startup, arrange to disable randomized hashing in the stdlib.This mechanism replaces the old mutable
_Hasher._secretKey
property with a read-only_Hasher._seed
var, and adds a new_Hasher._isDeterministic
boolean property indicating whetherSet
andDictionary
should ensure repeatable ordering.The seed generator is updated to make better use of the system-provided RNGs.
Swift's lit config is updated to run executable tests with deterministic hashing enabled by default, on all platforms.