crypto: golang.org/x/crypto/ssh Index | Examples | Files | Directories

Packages imported by ssh

PathSynopsis
bufioPackage bufio implements buffered I/O.
bytesPackage bytes implements functions for the manipulation of byte slices.
cryptoPackage crypto collects common cryptographic constants.
crypto/aesPackage aes implements AES encryption (formerly Rijndael), as defined in U.S.
crypto/cipherPackage cipher implements standard block cipher modes that can be wrapped around low-level block cipher implementations.
crypto/dsaPackage dsa implements the Digital Signature Algorithm, as defined in FIPS 186-3.
crypto/ecdsaPackage ecdsa implements the Elliptic Curve Digital Signature Algorithm, as defined in FIPS 186-3.
crypto/ellipticPackage elliptic implements several standard elliptic curves over prime fields.
crypto/hmacPackage hmac implements the Keyed-Hash Message Authentication Code (HMAC) as defined in U.S.
crypto/randPackage rand implements a cryptographically secure pseudorandom number generator.
crypto/rc4Package rc4 implements RC4 encryption, as defined in Bruce Schneier's Applied Cryptography.
crypto/rsaPackage rsa implements RSA encryption as specified in PKCS#1.
crypto/sha1Package sha1 implements the SHA1 hash algorithm as defined in RFC 3174.
crypto/sha256Package sha256 implements the SHA224 and SHA256 hash algorithms as defined in FIPS 180-4.
crypto/sha512Package sha512 implements the SHA-384, SHA-512, SHA-512/​224, and SHA-512/​256 hash algorithms as defined in FIPS 180-4.
crypto/subtlePackage subtle implements functions that are often useful in cryptographic code but require careful thought to use correctly.
crypto/x509Package x509 parses X.509-encoded keys and certificates.
encoding/asn1Package asn1 implements parsing of DER-encoded ASN.1 data structures, as defined in ITU-T Rec X.690.
encoding/base64Package base64 implements base64 encoding as specified by RFC 4648.
encoding/binaryPackage binary implements simple translation between numbers and byte sequences and encoding and decoding of varints.
encoding/pemPackage pem implements the PEM data encoding, which originated in Privacy Enhanced Mail.
errorsPackage errors implements functions to manipulate errors.
fmtPackage fmt implements formatted I/​O with functions analogous to C's printf and scanf.
golang.org/x/crypto/curve25519Package curve25519 provides an implementation of scalar multiplication on the elliptic curve known as curve25519.
hashPackage hash provides interfaces for hash functions.
ioPackage io provides basic interfaces to I/​O primitives.
io/ioutilPackage ioutil implements some I/​O utility functions.
logPackage log implements a simple logging package.
math/bigPackage big implements arbitrary-precision arithmetic (big numbers).
math/randPackage rand implements pseudo-random number generators.
netPackage net provides a portable interface for network I/​O, including TCP/​IP, UDP, domain name resolution, and Unix domain sockets.
reflectPackage reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types.
sortPackage sort provides primitives for sorting slices and user-defined collections.
strconvPackage strconv implements conversions to and from string representations of basic data types.
stringsPackage strings implements simple functions to manipulate UTF-8 encoded strings.
syncPackage sync provides basic synchronization primitives such as mutual exclusion locks.
sync/atomicPackage atomic provides low-level atomic memory primitives useful for implementing synchronization algorithms.
timePackage time provides functionality for measuring and displaying time.