Function getRNG [src]
Produces and returns an RNG value using either the default or specified RNG algorithm.
Prototype
pub fn getRNG(self: *const Rng, algo: ?*align(8) const Guid, value_length: usize, value: [*]u8) Status
Parameters
self: *const Rng
algo: ?*align(8) const Guid
value_length: usize
value: [*]u8
Source
pub fn getRNG(self: *const Rng, algo: ?*align(8) const Guid, value_length: usize, value: [*]u8) Status {
return self._get_rng(self, algo, value_length, value);
}