From owner-cvs-all@FreeBSD.ORG Mon Feb 13 02:50:55 2012 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 20CD71065680; Mon, 13 Feb 2012 02:50:55 +0000 (UTC) (envelope-from pgj@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0C27B8FC14; Mon, 13 Feb 2012 02:50:55 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id q1D2osi0053961; Mon, 13 Feb 2012 02:50:54 GMT (envelope-from pgj@repoman.freebsd.org) Received: (from pgj@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id q1D2os1o053960; Mon, 13 Feb 2012 02:50:54 GMT (envelope-from pgj) Message-Id: <201202130250.q1D2os1o053960@repoman.freebsd.org> From: Gabor Pali Date: Mon, 13 Feb 2012 02:50:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang/ghc bsd.hackage.mk ports/security/hs-pwstore-fast Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Feb 2012 02:50:55 -0000 pgj 2012-02-13 02:50:54 UTC FreeBSD ports repository Modified files: lang/ghc bsd.hackage.mk Added files: security/hs-pwstore-fast Makefile distinfo pkg-descr Log: To store passwords securely, they should be salted, then hashed with a slow hash function. This library uses PBKDF1-SHA256, and handles all the details. It uses the cryptohash package for speed; if you need a pure Haskell library, pwstore-purehaskell has the exact same API, but uses only pure Haskell. It is about 25 times slower than this package, but still quite usable. WWW: https://github.com/PeterScott/pwstore Obtained from: FreeBSD Haskell Revision Changes Path 1.97 +2 -1 ports/lang/ghc/bsd.hackage.mk 1.1 +21 -0 ports/security/hs-pwstore-fast/Makefile (new) 1.1 +2 -0 ports/security/hs-pwstore-fast/distinfo (new) 1.1 +8 -0 ports/security/hs-pwstore-fast/pkg-descr (new)