blob: 070355859dffec138c6fb0c922b1674b98fd7960 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Copyright (c) 2019-2021 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
struct ReadError {
msg string = 'crypto.rand.read() error reading random bytes'
code int
}
|