bufio | Package 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. |
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. |
errors | Package errors implements functions to manipulate errors. |
io | Package io provides basic interfaces to I/O primitives. |
math/big | Package big implements arbitrary-precision arithmetic (big numbers). |
os | Package os provides a platform-independent interface to operating system functionality. |
runtime | Package runtime contains operations that interact with Go's runtime system, such as functions to control goroutines. |
sync | Package sync provides basic synchronization primitives such as mutual exclusion locks. |
time | Package time provides functionality for measuring and displaying time. |