-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Generate a random base 16, 58, or 64 string -- -- Uses the fastest strong random available for a random string of the -- given base and length (in bytes of entropy). @package random-string @version 0.1.0.1 module System.RandomString data StringOpts StringOpts :: Alphabet -> Int -> StringOpts [alphabet] :: StringOpts -> Alphabet [nrBytes] :: StringOpts -> Int data Alphabet Base58 :: Alphabet Base16 :: Alphabet Base64 :: Alphabet randomString :: (MonadIO m, IsString s) => StringOpts -> m s