* feat: support go1.11 and go 1.12. * chore: generate. * fix: build constraint. * exclude importer.For * generate go 1.11
27 lines
616 B
Go
27 lines
616 B
Go
// +build go1.12,!go1.13
|
|
|
|
package stdlib
|
|
|
|
// Code generated by 'goexports crypto/sha256'. DO NOT EDIT.
|
|
|
|
import (
|
|
"crypto/sha256"
|
|
"reflect"
|
|
)
|
|
|
|
func init() {
|
|
Value["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
|
|
|
|
}
|
|
}
|