Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Krautz <mikkel@krautz.dk>2017-03-02 01:29:07 +0300
committerMikkel Krautz <mikkel@krautz.dk>2017-03-02 01:29:07 +0300
commitaa25435a7ba250080084266877f3b9562c94ed5a (patch)
tree5558718064e4a15ae4e5721f2fa085a67832e711 /scripts/mklic.pl
parent0be68559e3dd84eeac633542d7cdf5ccbb099d65 (diff)
CryptographicRandom: new class for acquiring random data for cryptographic purposes.
The class implements an API similar to OpenBSD's arc4random: - A way to get a random uint32_t. (arc4random) - A way to get a random uint32_t with an upper bound. (arc4random_uniform) - A way to fill a buffer with random data. (arc4random_buf)
Diffstat (limited to 'scripts/mklic.pl')
-rwxr-xr-xscripts/mklic.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/mklic.pl b/scripts/mklic.pl
index 5e366ddab..6bc223ca1 100755
--- a/scripts/mklic.pl
+++ b/scripts/mklic.pl
@@ -91,6 +91,7 @@ my @thirdPartyLicenses = (
["licenseQQBonjour", "../3rdparty/qqbonjour-src/LICENSE", "QQBonjour", "https://doc.qt.io/archives/qq/qq23-bonjour.html"],
["licenseSmallFT", "../3rdparty/smallft-src/LICENSE", "smallft", "https://www.xiph.org"],
["licenseOldStyleLicenseHeaders", "../3rdPartyLicenses/mumble-old-license-headers/LICENSE.txt", "Old-style Mumble license headers", "https://www.mumble.info"],
+ ["licenseArc4RandomUniform", "../3rdparty/arc4random-src/LICENSE", "arc4random_uniform", "https://www.openbsd.org"],
);