File: control

package info (click to toggle)
golang-github-elithrar-simple-scrypt 1.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 116 kB
  • sloc: makefile: 2
file content (35 lines) | stat: -rw-r--r-- 1,642 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Source: golang-github-elithrar-simple-scrypt
Section: golang
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Félix Sipma <felix+debian@gueux.org>
Build-Depends: debhelper-compat (= 13),
               dh-golang,
               golang-any,
               golang-golang-x-crypto-dev
Standards-Version: 4.6.2
Homepage: https://github.com/elithrar/simple-scrypt
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-elithrar-simple-scrypt
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-elithrar-simple-scrypt.git
Rules-Requires-Root: no
Testsuite: autopkgtest-pkg-go
XS-Go-Import-Path: github.com/elithrar/simple-scrypt

Package: golang-github-elithrar-simple-scrypt-dev
Architecture: all
Depends: ${shlibs:Depends},
         ${misc:Depends},
         golang-golang-x-crypto-dev
Multi-Arch: foreign
Description: 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.