File: control

package info (click to toggle)
golang-github-mr-tron-base58 1.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 148 kB
  • sloc: makefile: 3
file content (32 lines) | stat: -rw-r--r-- 1,499 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
Source: golang-github-mr-tron-base58
Section: golang
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Reinhard Tartler <siretart@tauware.de>,
Rules-Requires-Root: no
Build-Depends: debhelper-compat (= 13),
               dh-sequence-golang,
               golang-any,
Testsuite: autopkgtest-pkg-go
Standards-Version: 4.7.2
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-mr-tron-base58
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-mr-tron-base58.git
Homepage: https://github.com/mr-tron/base58
XS-Go-Import-Path: github.com/mr-tron/base58

Package: golang-github-mr-tron-base58-dev
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends},
Description: Fast implementation  for encoding/decoding Base58 (library)
 This package provides a Go library for encoding and decoding data using the
 Base58 encoding scheme. Base58 is a group of binary-to-text encoding schemes
 used to represent large integers as alphanumeric text. It is similar to Base64
 but omits characters that could be ambiguously interpreted when printed (0, O,
 I, l) and omits the '+' and '/' characters to avoid issues with URL encoding.
 .
 Base58 is notably used in cryptocurrencies like Bitcoin, where it's employed
 for encoding addresses and private keys. This library offers a straightforward
 and efficient way to perform Base58 operations within Go applications.
 .
 The package contains the source code for the Go library.