github.com/goplus/igop@v0.25.0/pkg/crypto/sha1/go115_export.go (about) 1 // export by github.com/goplus/igop/cmd/qexp 2 3 //+build go1.15,!go1.16 4 5 package sha1 6 7 import ( 8 q "crypto/sha1" 9 10 "go/constant" 11 "reflect" 12 13 "github.com/goplus/igop" 14 ) 15 16 func init() { 17 igop.RegisterPackage(&igop.Package{ 18 Name: "sha1", 19 Path: "crypto/sha1", 20 Deps: map[string]string{ 21 "crypto": "crypto", 22 "encoding/binary": "binary", 23 "errors": "errors", 24 "hash": "hash", 25 "internal/cpu": "cpu", 26 "math/bits": "bits", 27 }, 28 Interfaces: map[string]reflect.Type{}, 29 NamedTypes: map[string]reflect.Type{}, 30 AliasTypes: map[string]reflect.Type{}, 31 Vars: map[string]reflect.Value{}, 32 Funcs: map[string]reflect.Value{ 33 "New": reflect.ValueOf(q.New), 34 "Sum": reflect.ValueOf(q.Sum), 35 }, 36 TypedConsts: map[string]igop.TypedConst{}, 37 UntypedConsts: map[string]igop.UntypedConst{ 38 "BlockSize": {"untyped int", constant.MakeInt64(int64(q.BlockSize))}, 39 "Size": {"untyped int", constant.MakeInt64(int64(q.Size))}, 40 }, 41 }) 42 }