2021-01-18 13:20:06 +01:00
|
|
|
// Copyright (c) 2019-2021 Alexander Medvednikov. All rights reserved.
|
2019-07-31 03:24:12 +02:00
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
module rand
|
|
|
|
|
2019-08-24 01:48:40 +02:00
|
|
|
#include <Security/SecRandom.h>
|
|
|
|
|
2019-07-31 03:24:12 +02:00
|
|
|
#flag darwin -framework Security
|
|
|
|
|
2019-11-24 04:27:02 +01:00
|
|
|
fn C.SecRandomCopyBytes() int
|
|
|
|
|
2021-01-23 13:33:49 +01:00
|
|
|
// read returns an array of `bytes_needed` random bytes read from the OS.
|
2019-07-31 03:24:12 +02:00
|
|
|
pub fn read(bytes_needed int) ?[]byte {
|
|
|
|
mut buffer := malloc(bytes_needed)
|
2019-08-22 23:00:31 +02:00
|
|
|
status := C.SecRandomCopyBytes(0, bytes_needed, buffer)
|
|
|
|
if status != 0 {
|
2019-10-24 13:48:20 +02:00
|
|
|
return read_error
|
2019-07-31 03:24:12 +02:00
|
|
|
}
|
|
|
|
return c_array_to_bytes_tmp(bytes_needed, buffer)
|
|
|
|
}
|