// Copyright 2016 The Go Authors. All rights reserved.// Use of this source code is governed by a BSD-style// license that can be found in the LICENSE file.
// Package blake2s implements the BLAKE2s hash algorithm defined by RFC 7693// and the extendable output function (XOF) BLAKE2Xs.//// BLAKE2s is optimized for 8- to 32-bit platforms and produces digests of any// size between 1 and 32 bytes.// For a detailed specification of BLAKE2s see https://blake2.net/blake2.pdf// and for BLAKE2Xs see https://blake2.net/blake2x.pdf//// If you aren't sure which function you need, use BLAKE2s (Sum256 or New256).// If you need a secret-key MAC (message authentication code), use the New256// function with a non-nil key.//// BLAKE2X is a construction to compute hash values larger than 32 bytes. It// can produce hash values between 0 and 65535 bytes.
The pages are generated with Goldsv0.8.2. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds.