2020-01-23 23:04:46 +03:00
|
|
|
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
|
2019-07-31 04:24:12 +03: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 02:48:40 +03:00
|
|
|
#include <Security/SecRandom.h>
|
|
|
|
|
2019-07-31 04:24:12 +03:00
|
|
|
#flag darwin -framework Security
|
|
|
|
|
2019-11-24 06:27:02 +03:00
|
|
|
fn C.SecRandomCopyBytes() int
|
|
|
|
|
2019-07-31 04:24:12 +03:00
|
|
|
pub fn read(bytes_needed int) ?[]byte {
|
|
|
|
mut buffer := malloc(bytes_needed)
|
2019-08-23 00:00:31 +03:00
|
|
|
status := C.SecRandomCopyBytes(0, bytes_needed, buffer)
|
|
|
|
if status != 0 {
|
2019-10-24 14:48:20 +03:00
|
|
|
return read_error
|
2019-07-31 04:24:12 +03:00
|
|
|
}
|
|
|
|
return c_array_to_bytes_tmp(bytes_needed, buffer)
|
|
|
|
}
|