mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
crypt: implement crypto.rand.read/1 for OpenBSD and FreeBSD (#15437)
This commit is contained in:
parent
8736f26a1c
commit
d41b2be3a7
16
vlib/crypto/rand/rand_freebsd.c.v
Normal file
16
vlib/crypto/rand/rand_freebsd.c.v
Normal file
@ -0,0 +1,16 @@
|
||||
// Copyright (c) 2022 John Lloyd. All rights reserved.
|
||||
// Use of this source code is governed by an MIT license
|
||||
// that can be found in the LICENSE file.
|
||||
|
||||
module rand
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
fn C.arc4random_buf(p &byte, n usize)
|
||||
|
||||
// read returns an array of `bytes_needed` random bytes read from the OS.
|
||||
pub fn read(bytes_needed int) ?[]u8 {
|
||||
mut buffer := unsafe { malloc_noscan(bytes_needed) }
|
||||
C.arc4random_buf(buffer, bytes_needed)
|
||||
return unsafe { buffer.vbytes(bytes_needed) }
|
||||
}
|
16
vlib/crypto/rand/rand_openbsd.c.v
Normal file
16
vlib/crypto/rand/rand_openbsd.c.v
Normal file
@ -0,0 +1,16 @@
|
||||
// Copyright (c) 2022 John Lloyd. All rights reserved.
|
||||
// Use of this source code is governed by an MIT license
|
||||
// that can be found in the LICENSE file.
|
||||
|
||||
module rand
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
fn C.arc4random_buf(p &byte, n usize)
|
||||
|
||||
// read returns an array of `bytes_needed` random bytes read from the OS.
|
||||
pub fn read(bytes_needed int) ?[]u8 {
|
||||
mut buffer := unsafe { malloc_noscan(bytes_needed) }
|
||||
C.arc4random_buf(buffer, bytes_needed)
|
||||
return unsafe { buffer.vbytes(bytes_needed) }
|
||||
}
|
Loading…
Reference in New Issue
Block a user