mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 18:36:30 +02:00
* chore(deps): bump github.com/golangci/golangci-lint Bumps [github.com/golangci/golangci-lint](https://github.com/golangci/golangci-lint) from 1.48.0 to 1.50.0. - [Release notes](https://github.com/golangci/golangci-lint/releases) - [Changelog](https://github.com/golangci/golangci-lint/blob/master/CHANGELOG.md) - [Commits](https://github.com/golangci/golangci-lint/compare/v1.48.0...v1.50.0) --- updated-dependencies: - dependency-name: github.com/golangci/golangci-lint dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * lint Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Caleb Doxsey <cdoxsey@pomerium.com>
22 lines
837 B
Go
22 lines
837 B
Go
// Copyright (c) 2014 The btcsuite developers
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
//
|
|
// See: https://github.com/btcsuite/btcutil/blob/master/LICENSE
|
|
|
|
/*
|
|
Package base58 provides an API for working with modified base58 and Base58Check
|
|
encodings.
|
|
|
|
# Modified Base58 Encoding
|
|
|
|
Standard base58 encoding is similar to standard base64 encoding except, as the
|
|
name implies, it uses a 58 character alphabet which results in an alphanumeric
|
|
string and allows some characters which are problematic for humans to be
|
|
excluded. Due to this, there can be various base58 alphabets.
|
|
|
|
The modified base58 alphabet used by Bitcoin, and hence this package, omits the
|
|
0, O, I, and l characters that look the same in many fonts and are therefore
|
|
hard to humans to distinguish.
|
|
*/
|
|
package base58
|