Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. PleaseProvideUsername :: AuthMessage

    yesod-auth Yesod.Auth.Message

    No documentation available.

  2. ProvideIdentifier :: AuthMessage

    yesod-auth Yesod.Auth.Message

    No documentation available.

  3. module Yesod.Auth.Util.PasswordStore

    This is a fork of pwstore-fast, originally copyright (c) Peter Scott, 2011, and released under a BSD-style licence. Securely store hashed, salted passwords. If you need to store and verify passwords, there are many wrong ways to do it, most of them all too common. Some people store users' passwords in plain text. Then, when an attacker manages to get their hands on this file, they have the passwords for every user's account. One step up, but still wrong, is to simply hash all passwords with SHA1 or something. This is vulnerable to rainbow table and dictionary attacks. One step up from that is to hash the password along with a unique salt value. This is vulnerable to dictionary attacks, since guessing a password is very fast. The right thing to do is to use a slow hash function, to add some small but significant delay, that will be negligible for legitimate users but prohibitively expensive for someone trying to guess passwords by brute force. That is what this library does. It iterates a SHA256 hash, with a random salt, a few thousand times. This scheme is known as PBKDF1, and is generally considered secure; there is nothing innovative happening here. The API here is very simple. What you store are called password hashes. They are strings (technically, ByteStrings) that look like this:

    "sha256|14|jEWU94phx4QzNyH94Qp4CQ==|5GEw+jxP/4WLgzt9VS3Ee3nhqBlDsrKiB+rq7JfMckU="
    
    Each password hash shows the algorithm, the strength (more on that later), the salt, and the hashed-and-salted password. You store these on your server, in a database, for when you need to verify a password. You make a password hash with the makePassword function. Here's an example:
    >>> makePassword "hunter2" 14
    "sha256|14|Zo4LdZGrv/HYNAUG3q8WcA==|zKjbHZoTpuPLp1lh6ATolWGIKjhXvY4TysuKvqtNFyk="
    
    This will hash the password "hunter2", with strength 14, which is a good default value. The strength here determines how long the hashing will take. When doing the hashing, we iterate the SHA256 hash function 2^strength times, so increasing the strength by 1 makes the hashing take twice as long. When computers get faster, you can bump up the strength a little bit to compensate. You can strengthen existing password hashes with the strengthenPassword function. Note that makePassword needs to generate random numbers, so its return type is IO ByteString. If you want to avoid the IO monad, you can generate your own salt and pass it to makePasswordSalt. Your strength value should not be less than 12, and 14 is a good default value at the time of this writing, in 2013. Once you've got your password hashes, the second big thing you need to do with them is verify passwords against them. When a user gives you a password, you compare it with a password hash using the verifyPassword function:
    >>> verifyPassword "wrong guess" passwordHash
    False
    >>> verifyPassword "hunter2" passwordHash
    True
    
    These two functions are really all you need. If you want to make existing password hashes stronger, you can use strengthenPassword. Just pass it an existing password hash and a new strength value, and it will return a new password hash with that strength value, which will match the same password as the old password hash. Note that, as of version 2.4, you can also use PBKDF2, and specify the exact iteration count. This does not have a significant effect on security, but can be handy for compatibility with other code.

  4. ParsingFailed :: FilePath -> String -> ZipException

    zip Codec.Archive.Zip

    Thrown when archive structure cannot be parsed.

  5. data PendingAction

    zip Codec.Archive.Zip.Internal

    The sum type describes all possible actions that can be performed on an archive.

  6. data ProducingActions

    zip Codec.Archive.Zip.Internal

    A collection of maps describing how to produce entries in the resulting archive.

  7. ProducingActions :: Map FilePath (Map EntrySelector EntrySelector) -> Map EntrySelector (EntryOrigin, ConduitT () ByteString (ResourceT IO) ()) -> ProducingActions

    zip Codec.Archive.Zip.Internal

    No documentation available.

  8. ParsingFailed :: FilePath -> String -> ZipException

    zip Codec.Archive.Zip.Internal.Type

    Thrown when archive structure cannot be parsed.

  9. type Popper = IO Maybe ByteString

    zlib-bindings Codec.Zlib

    An IO action that returns the next chunk of data, returning Nothing when there is no more data to be popped.

  10. Produce :: ByteString -> IO Result -> Result

    zstd Codec.Compression.Zstd.Streaming

    A single frame of transformed data, and an action that when executed will yield the next step in the streaming operation. The action is ephemeral; you should discard it as soon as you use it.

Page 1097 of many | Previous | Next