package
0.0.0-20171011075504-07f7db3ea99f
Repository: https://github.com/mattn/go.git
Documentation: pkg.go.dev
# Packages
Package aes implements AES encryption (formerly Rijndael), as defined in U.S.
Package cipher implements standard block cipher modes that can be wrapped around low-level block cipher implementations.
Package des implements the Data Encryption Standard (DES) and the Triple Data Encryption Algorithm (TDEA) as defined in U.S.
Package dsa implements the Digital Signature Algorithm, as defined in FIPS 186-3.
Package ecdsa implements the Elliptic Curve Digital Signature Algorithm, as defined in FIPS 186-3.
Package elliptic implements several standard elliptic curves over prime fields.
Package hmac implements the Keyed-Hash Message Authentication Code (HMAC) as
defined in U.S.
Package md5 implements the MD5 hash algorithm as defined in RFC 1321.
Package rc4 implements RC4 encryption, as defined in Bruce Schneier's Applied Cryptography.
Package rsa implements RSA encryption as specified in PKCS#1.
Package subtle implements functions that are often useful in cryptographic code but require careful thought to use correctly.
Package tls partially implements TLS 1.2, as specified in RFC 5246.
Package x509 parses X.509-encoded keys and certificates.
# Functions
RegisterHash registers a function that returns a new instance of the given hash function.
# Constants
import golang.org/x/crypto/blake2b.
import golang.org/x/crypto/blake2b.
import golang.org/x/crypto/blake2b.
import golang.org/x/crypto/blake2s.
import golang.org/x/crypto/md4.
import crypto/md5.
no implementation; MD5+SHA1 used for TLS RSA.
import golang.org/x/crypto/ripemd160.
import crypto/sha1.
import crypto/sha256.
import crypto/sha256.
import golang.org/x/crypto/sha3.
import golang.org/x/crypto/sha3.
import golang.org/x/crypto/sha3.
import golang.org/x/crypto/sha3.
import crypto/sha512.
import crypto/sha512.
import crypto/sha512.
import crypto/sha512.
# Interfaces
Decrypter is an interface for an opaque private key that can be used for asymmetric decryption operations.
No description provided by the author
PrivateKey represents a private key using an unspecified algorithm.
PublicKey represents a public key using an unspecified algorithm.
Signer is an interface for an opaque private key that can be used for signing operations.
SignerOpts contains options for signing with a Signer.
# Type aliases
Hash identifies a cryptographic hash function that is implemented in another package.