authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2022-01-24 23:28:45-08:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-01-25 13:00:39-05:00
logf1b79c9a442c57eab353401f4e88e8a595ab01f8
tree3eb68d5d2e72b3195291b88dad908fb10ee621fd
parent0817d6b2150a00ab0d552888fc4822fced8e0f5f

std.crypto.random: `Random`s are no longer passed by reference


1 files changed, 1 insertions(+), 1 deletions(-)

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