Files
moxa/stdlib/go1_12_crypto_sha256.go

29 lines
654 B
Go

// +build go1.12,!go1.13
package stdlib
// Code generated by 'goexports crypto/sha256'. DO NOT EDIT.
import (
"crypto/sha256"
"reflect"
)
func init() {
Symbols["crypto/sha256"] = map[string]reflect.Value{
// function, constant and variable definitions
"BlockSize": reflect.ValueOf(sha256.BlockSize),
"New": reflect.ValueOf(sha256.New),
"New224": reflect.ValueOf(sha256.New224),
"Size": reflect.ValueOf(sha256.Size),
"Size224": reflect.ValueOf(sha256.Size224),
"Sum224": reflect.ValueOf(sha256.Sum224),
"Sum256": reflect.ValueOf(sha256.Sum256),
// type definitions
// interface wrapper definitions
}
}