Expose Yesod.Auth.Util.PasswordStore
This commit is contained in:
parent
59f073a41f
commit
464b055568
@ -1,3 +1,7 @@
|
|||||||
|
## 1.4.18
|
||||||
|
|
||||||
|
* Expose Yesod.Auth.Util.PasswordStore
|
||||||
|
|
||||||
## 1.4.17.3
|
## 1.4.17.3
|
||||||
|
|
||||||
* Some translation fixes
|
* Some translation fixes
|
||||||
|
|||||||
@ -116,7 +116,7 @@ import Yesod.Auth
|
|||||||
import qualified Yesod.Auth.Message as Msg
|
import qualified Yesod.Auth.Message as Msg
|
||||||
import Yesod.Core
|
import Yesod.Core
|
||||||
import Yesod.Form
|
import Yesod.Form
|
||||||
import qualified Yesod.PasswordStore as PS
|
import qualified Yesod.Auth.Util.PasswordStore as PS
|
||||||
import Control.Applicative ((<$>), (<*>))
|
import Control.Applicative ((<$>), (<*>))
|
||||||
import qualified Crypto.Hash as H
|
import qualified Crypto.Hash as H
|
||||||
import qualified Crypto.Nonce as Nonce
|
import qualified Crypto.Nonce as Nonce
|
||||||
|
|||||||
@ -1,13 +1,8 @@
|
|||||||
{-# LANGUAGE OverloadedStrings, BangPatterns #-}
|
{-# LANGUAGE OverloadedStrings, BangPatterns #-}
|
||||||
{-# LANGUAGE CPP #-}
|
{-# LANGUAGE CPP #-}
|
||||||
-- |
|
-- |
|
||||||
-- Module : Crypto.PasswordStore
|
-- This is a fork of pwstore-fast, originally copyright (c) Peter Scott, 2011,
|
||||||
-- Copyright : (c) Peter Scott, 2011
|
-- and released under a BSD-style licence.
|
||||||
-- License : BSD-style
|
|
||||||
--
|
|
||||||
-- Maintainer : pjscott@iastate.edu
|
|
||||||
-- Stability : experimental
|
|
||||||
-- Portability : portable
|
|
||||||
--
|
--
|
||||||
-- Securely store hashed, salted passwords. If you need to store and verify
|
-- 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
|
-- passwords, there are many wrong ways to do it, most of them all too
|
||||||
@ -71,7 +66,7 @@
|
|||||||
-- iteration count. This does not have a significant effect on security, but can
|
-- iteration count. This does not have a significant effect on security, but can
|
||||||
-- be handy for compatibility with other code.
|
-- be handy for compatibility with other code.
|
||||||
|
|
||||||
module Yesod.PasswordStore (
|
module Yesod.Auth.Util.PasswordStore (
|
||||||
|
|
||||||
-- * Algorithms
|
-- * Algorithms
|
||||||
pbkdf1, -- :: ByteString -> Salt -> Int -> ByteString
|
pbkdf1, -- :: ByteString -> Salt -> Int -> ByteString
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
name: yesod-auth
|
name: yesod-auth
|
||||||
version: 1.4.17.3
|
version: 1.4.18
|
||||||
license: MIT
|
license: MIT
|
||||||
license-file: LICENSE
|
license-file: LICENSE
|
||||||
author: Michael Snoyman, Patrick Brisbin
|
author: Michael Snoyman, Patrick Brisbin
|
||||||
@ -77,8 +77,8 @@ library
|
|||||||
Yesod.Auth.GoogleEmail
|
Yesod.Auth.GoogleEmail
|
||||||
Yesod.Auth.GoogleEmail2
|
Yesod.Auth.GoogleEmail2
|
||||||
Yesod.Auth.Hardcoded
|
Yesod.Auth.Hardcoded
|
||||||
|
Yesod.Auth.Util.PasswordStore
|
||||||
other-modules: Yesod.Auth.Routes
|
other-modules: Yesod.Auth.Routes
|
||||||
Yesod.PasswordStore
|
|
||||||
ghc-options: -Wall
|
ghc-options: -Wall
|
||||||
|
|
||||||
source-repository head
|
source-repository head
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user