blob: 846e3d30a4606d2816405cc5e05cba6ad6b88891 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
from .common cimport bitgen_t
cimport numpy as np
cdef class BitGenerator():
cdef readonly object _seed_seq
cdef readonly object lock
cdef bitgen_t _bitgen
cdef readonly object _ctypes
cdef readonly object _cffi
cdef readonly object capsule
cdef class SeedSequence():
cdef readonly object entropy
cdef readonly object program_entropy
cdef readonly tuple spawn_key
cdef readonly int pool_size
cdef readonly object pool
cdef readonly int n_children_spawned
cdef mix_entropy(self, np.ndarray[np.npy_uint32, ndim=1] mixer,
np.ndarray[np.npy_uint32, ndim=1] entropy_array)
cdef get_assembled_entropy(self)
cdef class SeedlessSequence():
pass
|