std.crypto.random: Randoms are no longer passed by reference

This commit is contained in:
Meghan 2022-01-24 23:28:45 -08:00 committed by Andrew Kelley
parent 0817d6b215
commit f1b79c9a44

View File

@ -158,7 +158,7 @@ pub const nacl = struct {
pub const utils = @import("crypto/utils.zig");
/// This is a thread-local, cryptographically secure pseudo random number generator.
pub const random = &@import("crypto/tlcsprng.zig").interface;
pub const random = @import("crypto/tlcsprng.zig").interface;
const std = @import("std.zig");