Imports of package packet

PathSynopsis
bufioPackage bufio implements buffered I/O. It wraps an io.Reader or io.Writer object, creating another object (Reader or Writer) that also implements the interface but provides buffering and some help for textual I/O.
bytesPackage bytes implements functions for the manipulation of byte slices.
compress/bzip2Package bzip2 implements bzip2 decompression.
compress/flatePackage flate implements the DEFLATE compressed data format, described in RFC 1951.
compress/zlibPackage zlib implements reading and writing of zlib format compressed data, as specified in RFC 1950.
cryptoPackage crypto collects common cryptographic constants.
crypto/aesPackage aes implements AES encryption (formerly Rijndael), as defined in U.S. Federal Information Processing Standards Publication 197.
crypto/cipherPackage cipher implements standard block cipher modes that can be wrapped around low-level block cipher implementations.
crypto/desPackage des implements the Data Encryption Standard (DES) and the Triple Data Encryption Algorithm (TDEA) as defined in U.S. Federal Information Processing Standards Publication 46-3.
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-5].
crypto/ellipticPackage elliptic implements the standard NIST P-224, P-256, P-384, and P-521 elliptic curves over prime fields.
crypto/md5Package md5 implements the MD5 hash algorithm as defined in RFC 1321.
crypto/randPackage rand implements a cryptographically secure random number generator.
crypto/rsaPackage rsa implements RSA encryption as specified in PKCS #1 and RFC 8017.
crypto/sha1Package sha1 implements the SHA-1 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.
encoding/asn1Package asn1 implements parsing of DER-encoded ASN.1 data structures, as defined in ITU-T Rec X.690.
encoding/binaryPackage binary implements simple translation between numbers and byte sequences and encoding and decoding of varints.
fmtPackage fmt implements formatted I/O with functions analogous to C's printf and scanf.
golang.org/x/crypto/cast5Package cast5 implements CAST5, as defined in RFC 2144.
golang.org/x/crypto/openpgp/elgamalPackage elgamal implements ElGamal encryption, suitable for OpenPGP, as specified in "A Public-Key Cryptosystem and a Signature Scheme Based on Discrete Logarithms," IEEE Transactions on Information Theory, v.
golang.org/x/crypto/openpgp/errorsPackage errors contains common error types for the OpenPGP packages.
golang.org/x/crypto/openpgp/s2kPackage s2k implements the various OpenPGP string-to-key transforms as specified in RFC 4800 section 3.7.1.
hashPackage hash provides interfaces for hash functions.
imagePackage image implements a basic 2-D image library.
image/jpegPackage jpeg implements a JPEG image decoder and encoder.
ioPackage io provides basic interfaces to I/O primitives.
math/bigPackage big implements arbitrary-precision arithmetic (big numbers).
math/bitsPackage bits implements bit counting and manipulation functions for the predeclared unsigned integer types.
strconvPackage strconv implements conversions to and from string representations of basic data types.
stringsPackage strings implements simple functions to manipulate UTF-8 encoded strings.
timePackage time provides functionality for measuring and displaying time.