-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | A secure URL-friendly string ID generator -- -- A secure URL-friendly string ID generator @package tinyid @version 0.1.1.0 module Data.TinyID -- | A URL-friendly alphabet. -- -- See section 2.3 of RFC3986 for more information. urlSafeAlphabet :: ByteString -- | Generates a (cryptographically) secure ID with a specified alphabet at -- a given length from system entropy. nextRandomFromAlphabet :: ByteString -> Int -> IO ByteString -- | Generates a (cryptographically) secure and URL-friendly ID from system -- entropy. nextRandom :: Int -> IO ByteString