tag | 0e073ad1de04c9afefe032d9f59bc4b1eb6a39a2 | |
---|---|---|
tagger | The Android Open Source Project <initial-contribution@android.com> | Tue Mar 14 07:25:54 2023 -0700 |
object | 20c171c06a961923a6eb96e0fd2cf130360957f6 |
Android security 12.0.0 release 45
commit | 20c171c06a961923a6eb96e0fd2cf130360957f6 | [log] [tgz] |
---|---|---|
author | android-build-team Robot <android-build-team-robot@google.com> | Sun Feb 21 00:06:18 2021 +0000 |
committer | android-build-team Robot <android-build-team-robot@google.com> | Sun Feb 21 00:06:18 2021 +0000 |
tree | 40c7ef2eea2c0a82b12b1645c8ade94c411f5d77 | |
parent | 13e5fda7c94e776c9fbc8d894690cbdff8890a50 [diff] | |
parent | a1b082fdbfdaff04698bd1dccfe2f573cb1f95cc [diff] |
Snap for 7160059 from a1b082fdbfdaff04698bd1dccfe2f573cb1f95cc to sc-release Change-Id: I6886165e32e6ff415d8d89bd2eac51f10312e539
A cryptographically secure random number generator that uses the ChaCha algorithm.
ChaCha is a stream cipher designed by Daniel J. Bernstein[^1], that we use as an RNG. It is an improved variant of the Salsa20 cipher family, which was selected as one of the “stream ciphers suitable for widespread adoption” by eSTREAM[^2].
The RNGs provided by this crate are implemented via the fast stream ciphers of the c2-chacha
crate.
Links:
[^1]: D. J. Bernstein, ChaCha, a variant of Salsa20
[^2]: eSTREAM: the ECRYPT Stream Cipher Project
rand_chacha
is no_std
compatible when disabling default features; the std
feature can be explicitly required to re-enable std
support. Using std
allows detection of CPU features and thus better optimisation.
rand_chacha
is distributed under the terms of both the MIT license and the Apache License (Version 2.0).
See LICENSE-APACHE and LICENSE-MIT, and COPYRIGHT for details.