github.com/goplus/igop@v0.25.0/pkg/crypto/md5/go119_export.go (about) 1 // export by github.com/goplus/igop/cmd/qexp 2 3 //go:build go1.19 && !go1.20 4 // +build go1.19,!go1.20 5 6 package md5 7 8 import ( 9 q "crypto/md5" 10 11 "go/constant" 12 "reflect" 13 14 "github.com/goplus/igop" 15 ) 16 17 func init() { 18 igop.RegisterPackage(&igop.Package{ 19 Name: "md5", 20 Path: "crypto/md5", 21 Deps: map[string]string{ 22 "crypto": "crypto", 23 "encoding/binary": "binary", 24 "errors": "errors", 25 "hash": "hash", 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 }