golang-github-elithrar-simple-scrypt 1.2.0-1 source package in Ubuntu

Changelog

golang-github-elithrar-simple-scrypt (1.2.0-1) unstable; urgency=medium

  * New upstream version 1.2.0
  * remove pristine-tar option from gbp.conf
  * bump Standards-Version to 4.1.3:
    - use https url in copyright file
    - use priority optional instead of extra
  * bump compat to 11

 -- Félix Sipma <email address hidden>  Tue, 27 Feb 2018 13:23:14 +0100

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
Bionic release universe misc

Builds

Bionic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-elithrar-simple-scrypt_1.2.0-1.dsc 2.3 KiB cc74b11dd27a9099d83a90f837f45b448f6d4d9396b7c99644a45cdbd1fc219c
golang-github-elithrar-simple-scrypt_1.2.0.orig.tar.gz 7.2 KiB 3d0c54c6a0036a2605be8e5ac08987b8ddf44a912f09af0f615f1aeaacc8c823
golang-github-elithrar-simple-scrypt_1.2.0-1.debian.tar.xz 3.2 KiB 7d39e43ba095a8e7754a555b98625956d253a529b665fa37c596dcbc003405b4

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.