← Packages / bastion / Capabilities

IO.Random

in bastion v0.1.0

v0.1.0 is the oldest version of bastion that was analysed, so there is nothing to compare it against. IO.Random is a first sighting, not a change.

lib/security/session.march:44
41
42mod Bastion.Session do
43
44 needs IO.Random
45
46 import Conn
47 import HttpServer
lib/security/csrf.march:24
21
22mod CSRF do
23
24 needs IO.Random
25
26 import Crypto
27 alias Bastion.Session as Session
lib/security/crypto.march:42
39
40mod Crypto do
41
42 needs IO.Random
43
44 import Hkdf
45
lib/middleware/depot_middleware.march:32
29mod Depot.Middleware do
30
31 needs IO.NetConnect
32 needs IO.Random
33 needs IO.Spawn
34
35 import Pool