Imports of package cryptotest

PathSynopsis
bytesPackage bytes implements functions for the manipulation of byte slices.
crypto/cipherPackage cipher implements standard block cipher modes that can be wrapped around low-level block cipher implementations.
crypto/internal/boringPackage boring provides access to BoringCrypto implementation functions.
crypto/internal/fips140
crypto/internal/implPackage impl is a registry of alternative implementations of cryptographic primitives, to allow selecting them for testing.
crypto/subtlePackage subtle implements functions that are often useful in cryptographic code but require careful thought to use correctly.
encoding/jsonPackage json implements encoding and decoding of JSON as defined in RFC 7159.
fmtPackage fmt implements formatted I/O with functions analogous to C's printf and scanf.
hashPackage hash provides interfaces for hash functions.
internal/asanPackage asan contains helper functions for manually instrumenting code for the address sanitizer.
internal/goarchpackage goarch contains GOARCH-specific constants.
internal/goospackage goos contains GOOS-specific constants.
internal/msanPackage msan contains helper functions for manually instrumenting code for the memory sanitizer.
internal/racePackage race contains helper functions for manually instrumenting code for the race detector.
internal/testenvPackage testenv provides information about what functionality is available in different testing environments run by the Go team.
internal/testhash
ioPackage io provides basic interfaces to I/O primitives.
math/randPackage rand implements pseudo-random number generators suitable for tasks such as simulation, but it should not be used for security-sensitive work.
osPackage os provides a platform-independent interface to operating system functionality.
os/execPackage exec runs external commands.
reflectPackage reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types.
runtimePackage runtime contains operations that interact with Go's runtime system, such as functions to control goroutines.
slicesPackage slices defines various functions useful with slices of any type.
stringsPackage strings implements simple functions to manipulate UTF-8 encoded strings.
testingPackage testing provides support for automated testing of Go packages.
timePackage time provides functionality for measuring and displaying time.