1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

crypto.rand module

This commit is contained in:
joe-conigliaro
2019-07-31 11:24:12 +10:00
committed by Alexander Medvednikov
parent 17e8c1d628
commit 1202631fa6
5 changed files with 134 additions and 0 deletions

21
vlib/crypto/rand/rand.v Normal file
View File

@ -0,0 +1,21 @@
// Copyright (c) 2019 Alexander Medvednikov. All rights reserved.
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
module rand
const (
ReadError = error('crypro.rand.read() error reading random bytes.')
)
// NOTE: temp until we have []bytes(buff)
fn c_array_to_bytes_tmp(len, buffer voidptr) []byte {
mut arr := []byte
arr = array {
len: len
cap: 1
element_size: 1
data: buffer
}
return arr
}