v/vlib/crypto/rand/rand.v

11 lines
278 B
V
Raw Normal View History

2022-01-04 09:21:08 +00:00
// Copyright (c) 2019-2022 Alexander Medvednikov. All rights reserved.
2019-07-31 01:24:12 +00:00
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
module rand
struct ReadError {
msg string = 'crypto.rand.read() error reading random bytes'
code int
}