golang-github-elithrar-simple-scrypt 1.3.0-2 source package in Ubuntu

Changelog

golang-github-elithrar-simple-scrypt (1.3.0-2) unstable; urgency=medium

  * Team upload

  [ Debian Janitor ]
  * Bump debhelper from old 11 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.
  * Add Multi-Arch: foreign.

  [ Shengjing Zhu ]
  * Update section to golang
  * Update maintainer address to <email address hidden>
  * Bump debhelper compat to 13
  * Update Standards-Version to 4.6.2 (no changes)
  * Add autopkgtest-pkg-go
  * Add Rules-Requires-Root
  * Update uscan watch file version to 4
  * Add patch to skip flaky TestCalibrate (Closes: #1028876)

 -- Shengjing Zhu <email address hidden>  Sun, 15 Jan 2023 00:46:10 +0800

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-elithrar-simple-scrypt_1.3.0-2.dsc 1.7 KiB c29cd4824ec7ad3365f63bf148c6ef11460b59c826d0970bb023151656e83ef0
golang-github-elithrar-simple-scrypt_1.3.0.orig.tar.gz 7.5 KiB 6457e3a591c71a2b639c3c1ca2e419da6cc87b1b8d2f49c2d4ff22045eaebf53
golang-github-elithrar-simple-scrypt_1.3.0-2.debian.tar.xz 3.4 KiB 1de0706ba72a5a79aa71cf4c394e20a35ab841c670b94d12f88419c1a68c8909

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.