bytes | Package bytes implements functions for the manipulation of byte slices. |
crypto/aes | Package aes implements AES encryption (formerly Rijndael), as defined in U.S. Federal Information Processing Standards Publication 197. |
crypto/cipher | Package cipher implements standard block cipher modes that can be wrapped around low-level block cipher implementations. |
crypto/dsa | Package dsa implements the Digital Signature Algorithm, as defined in FIPS 186-3. |
crypto/ecdsa | Package ecdsa implements the Elliptic Curve Digital Signature Algorithm, as defined in [FIPS 186-5]. |
crypto/elliptic | Package elliptic implements the standard NIST P-224, P-256, P-384, and P-521 elliptic curves over prime fields. |
crypto/hmac | Package hmac implements the Keyed-Hash Message Authentication Code (HMAC) as defined in U.S. Federal Information Processing Standards Publication 198. |
crypto/rand | Package rand implements a cryptographically secure random number generator. |
crypto/rsa | Package rsa implements RSA encryption as specified in PKCS #1 and RFC 8017. |
crypto/sha1 | Package sha1 implements the SHA-1 hash algorithm as defined in RFC 3174. |
crypto/sha256 | Package sha256 implements the SHA224 and SHA256 hash algorithms as defined in FIPS 180-4. |
crypto/x509 | Package x509 implements a subset of the X.509 standard. |
crypto/x509/pkix | Package pkix contains shared, low level structures used for ASN.1 parsing and serialization of X.509 certificates, CRL and OCSP. |
encoding/asn1 | Package asn1 implements parsing of DER-encoded ASN.1 data structures, as defined in ITU-T Rec X.690. |
encoding/base32 | Package base32 implements base32 encoding as specified by RFC 4648. |
encoding/base64 | Package base64 implements base64 encoding as specified by RFC 4648. |
encoding/binary | Package binary implements simple translation between numbers and byte sequences and encoding and decoding of varints. |
encoding/hex | Package hex implements hexadecimal encoding and decoding. |
encoding/json | Package json implements encoding and decoding of JSON as defined in RFC 7159. |
encoding/pem | Package pem implements the PEM data encoding, which originated in Privacy Enhanced Mail. |
errors | Package errors implements functions to manipulate errors. |
fmt | Package fmt implements formatted I/O with functions analogous to C's printf and scanf. |
github.com/Masterminds/goutils | Package goutils provides utility functions to manipulate strings in various ways. |
github.com/Masterminds/semver/v3 | Package semver provides the ability to work with Semantic Versions (http://semver.org) in Go. |
github.com/google/uuid | Package uuid generates and inspects UUIDs. |
github.com/huandu/xstrings | Package xstrings is to provide string algorithms which are useful but not included in `strings` package. |
github.com/imdario/mergo | |
github.com/mitchellh/copystructure | |
github.com/spf13/cast | Package cast provides easy and safe casting in Go. |
golang.org/x/crypto/bcrypt | Package bcrypt implements Provos and Mazières's bcrypt adaptive hashing algorithm. |
golang.org/x/crypto/scrypt | Package scrypt implements the scrypt key derivation function as defined in Colin Percival's paper "Stronger Key Derivation via Sequential Memory-Hard Functions" (https://www.tarsnap.com/scrypt/scrypt.pdf). |
hash/adler32 | Package adler32 implements the Adler-32 checksum. |
html/template | Package template (html/template) implements data-driven templates for generating HTML output safe against code injection. |
io | Package io provides basic interfaces to I/O primitives. |
math | Package math provides basic constants and mathematical functions. |
math/big | Package big implements arbitrary-precision arithmetic (big numbers). |
math/rand | Package rand implements pseudo-random number generators suitable for tasks such as simulation, but it should not be used for security-sensitive work. |
net | Package net provides a portable interface for network I/O, including TCP/IP, UDP, domain name resolution, and Unix domain sockets. |
net/url | Package url parses URLs and implements query escaping. |
os | Package os provides a platform-independent interface to operating system functionality. |
path | Package path implements utility routines for manipulating slash-separated paths. |
reflect | Package reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types. |
regexp | Package regexp implements regular expression search. |
sort | Package sort provides primitives for sorting slices and user-defined collections. |
strconv | Package strconv implements conversions to and from string representations of basic data types. |
strings | Package strings implements simple functions to manipulate UTF-8 encoded strings. |
text/template | Package template implements data-driven templates for generating textual output. |
time | Package time provides functionality for measuring and displaying time. |