// Code generated by 'yaegi extract hash'. DO NOT EDIT.

//go:build go1.22
// +build go1.22

package stdlib

import (
	
	
)

func init() {
	Symbols["hash/hash"] = map[string]reflect.Value{
		// type definitions
		"Hash":   reflect.ValueOf((*hash.Hash)(nil)),
		"Hash32": reflect.ValueOf((*hash.Hash32)(nil)),
		"Hash64": reflect.ValueOf((*hash.Hash64)(nil)),

		// interface wrapper definitions
		"_Hash":   reflect.ValueOf((*_hash_Hash)(nil)),
		"_Hash32": reflect.ValueOf((*_hash_Hash32)(nil)),
		"_Hash64": reflect.ValueOf((*_hash_Hash64)(nil)),
	}
}

// _hash_Hash is an interface wrapper for Hash type
type _hash_Hash struct {
	IValue     interface{}
	WBlockSize func() int
	WReset     func()
	WSize      func() int
	WSum       func(b []byte) []byte
	WWrite     func(p []byte) (n int, err error)
}

func ( _hash_Hash) () int {
	return .WBlockSize()
}
func ( _hash_Hash) () {
	.WReset()
}
func ( _hash_Hash) () int {
	return .WSize()
}
func ( _hash_Hash) ( []byte) []byte {
	return .WSum()
}
func ( _hash_Hash) ( []byte) ( int,  error) {
	return .WWrite()
}

// _hash_Hash32 is an interface wrapper for Hash32 type
type _hash_Hash32 struct {
	IValue     interface{}
	WBlockSize func() int
	WReset     func()
	WSize      func() int
	WSum       func(b []byte) []byte
	WSum32     func() uint32
	WWrite     func(p []byte) (n int, err error)
}

func ( _hash_Hash32) () int {
	return .WBlockSize()
}
func ( _hash_Hash32) () {
	.WReset()
}
func ( _hash_Hash32) () int {
	return .WSize()
}
func ( _hash_Hash32) ( []byte) []byte {
	return .WSum()
}
func ( _hash_Hash32) () uint32 {
	return .WSum32()
}
func ( _hash_Hash32) ( []byte) ( int,  error) {
	return .WWrite()
}

// _hash_Hash64 is an interface wrapper for Hash64 type
type _hash_Hash64 struct {
	IValue     interface{}
	WBlockSize func() int
	WReset     func()
	WSize      func() int
	WSum       func(b []byte) []byte
	WSum64     func() uint64
	WWrite     func(p []byte) (n int, err error)
}

func ( _hash_Hash64) () int {
	return .WBlockSize()
}
func ( _hash_Hash64) () {
	.WReset()
}
func ( _hash_Hash64) () int {
	return .WSize()
}
func ( _hash_Hash64) ( []byte) []byte {
	return .WSum()
}
func ( _hash_Hash64) () uint64 {
	return .WSum64()
}
func ( _hash_Hash64) ( []byte) ( int,  error) {
	return .WWrite()
}