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.
CRC32 is a handy way to run trivial checks against values. Unlike the SHA hashing series generating collisions is fairly trivial which makes it useful for describing secret data in a public manner. For example, "Is you app using secret
18fbd270
or7d5469f0
" cannot possibly be used to reconstruct the secret but does permit concrete conversation about the secret itself. This can be further useful when the developers do not have direct access to the secret in question.It is also handy for establishing an application specific shared seed across multiple hosts, for establishing trivial user sharding, or other applications where uniqueness is not actually an asset.