golang-github-elithrar-simple-scrypt 1.1+git20161119.3.2325946-2 source package in Ubuntu

Changelog

golang-github-elithrar-simple-scrypt (1.1+git20161119.3.2325946-2) unstable; urgency=medium

  * fix incorrect watch file created by dh-make-golang
  * add disable-TestCalibrate-until-upstream-fixes-it patch (Closes: #851723)

 -- Félix Sipma <email address hidden>  Sun, 30 Apr 2017 12:02:02 +0200

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Artful: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-elithrar-simple-scrypt_1.1+git20161119.3.2325946-2.dsc 2.4 KiB 970b7e30c1df3ff3fc8b5c412fd996eedfe04c36aab73007f822232c03cba368
golang-github-elithrar-simple-scrypt_1.1+git20161119.3.2325946.orig.tar.xz 6.6 KiB 09530da8c5179482e22632ec23736ebcc750638920b465482d9007d40e09e970
golang-github-elithrar-simple-scrypt_1.1+git20161119.3.2325946-2.debian.tar.xz 3.1 KiB d9541774d081b643bc6ec3a2e2feff9bd8d601b334586be822651e162a86a68f

No changes file available.

Binary packages built by this source

golang-github-elithrar-simple-scrypt-dev: various purpose password hashes library using the scrypt KDF

 simple-scrypt provides a convenience wrapper around Go's existing scrypt
 package that makes it easier to securely derive strong keys ("hash user
 passwords"). This library allows you to:
    - Generate a scrypt derived key with a crytographically secure salt and
 sane default parameters for N, r and p.
    - Upgrade the parameters used to generate keys as hardware improves by
 storing them with the derived key (the scrypt spec. doesn't allow for this
 by default).
    - Provide your own parameters (if you wish to). The API closely mirrors
 Go's bcrypt (https://golang.org/x/crypto/bcrypt) library in an effort to
 make it easy to migrate—and because it's an easy to grok API.