File: control

package info (click to toggle)
golang-github-dchest-uniuri 0.0~git20200228.7aecb25-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, trixie
  • size: 68 kB
  • sloc: makefile: 2
file content (28 lines) | stat: -rw-r--r-- 1,227 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
Source: golang-github-dchest-uniuri
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Thorsten Alteholz <debian@alteholz.de>
Build-Depends: debhelper-compat (= 12),
               dh-golang,
               golang-any
Standards-Version: 4.5.0
Homepage: https://github.com/dchest/uniuri
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-dchest-uniuri
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-dchest-uniuri.git
XS-Go-Import-Path: github.com/dchest/uniuri
Testsuite: autopkgtest-pkg-go

Package: golang-github-dchest-uniuri-dev
Architecture: all
Depends: ${misc:Depends}
Multi-Arch: foreign
Description: generator of random strings to identify unique objects
 This Go package contains software to generate random strings good for
 use in URIs to identify unique objects.
 .
 A standard string created by New() is 16 bytes in length and consists
 of Latin upper and lowercase letters, and numbers (from the set of 62
 allowed characters), which means that it has ~95 bits of entropy. To get
 more entropy, you can use NewLen(UUIDLen), which returns 20-byte string,
 giving ~119 bits of entropy, or any other desired length.