Documentation ¶
Overview ¶
Package blake3 implements the BLAKE3 cryptographic hash function.
Index ¶
- func BaoDecode(dst io.Writer, data, outboard io.Reader, root [32]byte) (bool, error)
- func BaoEncode(dst io.WriterAt, data io.Reader, dataLen int64, outboard bool) ([32]byte, error)
- func BaoEncodeBuf(data []byte, outboard bool) ([]byte, [32]byte)
- func BaoVerifyBuf(data, outboard []byte, root [32]byte) bool
- func DeriveKey(subKey []byte, ctx string, srcKey []byte)
- func Sum256(b []byte) (out [32]byte)
- func Sum512(b []byte) (out [64]byte)
- type Hasher
- type OutputReader
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func BaoDecode ¶ added in v1.2.0
BaoDecode reads content and tree data from the provided reader(s), and streams the verified content to dst. It returns false if verification fails. If the content and tree data are interleaved, outboard should be nil.
func BaoEncode ¶ added in v1.2.0
BaoEncode computes the intermediate BLAKE3 tree hashes of data and writes them to dst. If outboard is false, the contents of data are also written to dst, interleaved with the tree hashes. It also returns the tree root, i.e. the 256-bit BLAKE3 hash.
func BaoEncodeBuf ¶ added in v1.2.0
BaoEncodeBuf returns the Bao encoding and root (i.e. BLAKE3 hash) for data.
func BaoVerifyBuf ¶ added in v1.2.0
BaoVerifyBuf verifies the Bao encoding and root (i.e. BLAKE3 hash) for data. If the content and tree data are interleaved, outboard should be nil.
func DeriveKey ¶ added in v0.2.0
DeriveKey derives a subkey from ctx and srcKey. ctx should be hardcoded, globally unique, and application-specific. A good format for ctx strings is:
[application] [commit timestamp] [purpose]
e.g.:
example.com 2019-12-25 16:18:03 session tokens v1
The purpose of these requirements is to ensure that an attacker cannot trick two different applications into using the same context string.
Types ¶
type Hasher ¶
type Hasher struct {
// contains filtered or unexported fields
}
Hasher implements hash.Hash.
func New ¶
New returns a Hasher for the specified digest size and key. If key is nil, the hash is unkeyed. Otherwise, len(key) must be 32.
func (*Hasher) XOF ¶
func (h *Hasher) XOF() *OutputReader
XOF returns an OutputReader initialized with the current hash state.
type OutputReader ¶
type OutputReader struct {
// contains filtered or unexported fields
}
An OutputReader produces an seekable stream of 2^64 - 1 pseudorandom output bytes.