hashing

package
v0.0.0-...-981ee17 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 17, 2022 License: BSD-3-Clause Imports: 6 Imported by: 1

Documentation

Overview

Package sharding is a generated GoMock package.

Index

Constants

View Source
const (
	HashLen = sha256.Size
	AddrLen = ripemd160.Size
)

Variables

This section is empty.

Functions

func Checksum

func Checksum(bytes []byte, length int) []byte

Checksum Create checksum of [length] bytes from the 256 bit hash of the byte slice.

Returns the lower [length] bytes of the hash
Errors if length > 32.

func ComputeHash160

func ComputeHash160(buf []byte) []byte

ComputeHash160 Compute a cryptographically strong 160 bit hash of the input

byte slice.

func ComputeHash256

func ComputeHash256(buf []byte) []byte

ComputeHash256 Compute a cryptographically strong 256 bit hash of the input

byte slice.

func ComputeHash256Ranges

func ComputeHash256Ranges(buf []byte, ranges [][2]int) []byte

ComputeHash256Ranges Compute a cryptographically strong 256 bit hash of the input

byte slice in the ranges specified.

Example: ComputeHash256Ranges({1, 2, 4, 8, 16}, {{1, 2},

                                        {3, 5}})
is equivalent to ComputeHash256({2, 8, 16}).

func PubkeyBytesToAddress

func PubkeyBytesToAddress(key []byte) []byte

Types

type Hash160

type Hash160 = [ripemd160.Size]byte

Hash160 A 160 bit long hash value.

func ComputeHash160Array

func ComputeHash160Array(buf []byte) Hash160

ComputeHash160Array Compute a cryptographically strong 160 bit hash of the

input byte slice.

func ToHash160

func ToHash160(bytes []byte) (Hash160, error)

type Hash256

type Hash256 = [HashLen]byte

Hash256 A 256 bit long hash value.

func ComputeHash256Array

func ComputeHash256Array(buf []byte) Hash256

ComputeHash256Array Compute a cryptographically strong 256 bit hash of the

input byte slice.

func ToHash256

func ToHash256(bytes []byte) (Hash256, error)

type Hasher

type Hasher interface {
	// Hash takes a string and computes its hash value.
	// Values must be computed deterministically.
	Hash([]byte) uint64
}

Hasher is an interface to compute a hash value.

type MockHasher

type MockHasher struct {
	// contains filtered or unexported fields
}

MockHasher is a mock of Hasher interface.

func NewMockHasher

func NewMockHasher(ctrl *gomock.Controller) *MockHasher

NewMockHasher creates a new mock instance.

func (*MockHasher) EXPECT

func (m *MockHasher) EXPECT() *MockHasherMockRecorder

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockHasher) Hash

func (m *MockHasher) Hash(arg0 []byte) uint64

Hash mocks base method.

type MockHasherMockRecorder

type MockHasherMockRecorder struct {
	// contains filtered or unexported fields
}

MockHasherMockRecorder is the mock recorder for MockHasher.

func (*MockHasherMockRecorder) Hash

func (mr *MockHasherMockRecorder) Hash(arg0 interface{}) *gomock.Call

Hash indicates an expected call of Hash.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL