github.com/goplus/igop@v0.25.0/pkg/crypto/hmac/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 hmac 7 8 import ( 9 q "crypto/hmac" 10 11 "reflect" 12 13 "github.com/goplus/igop" 14 ) 15 16 func init() { 17 igop.RegisterPackage(&igop.Package{ 18 Name: "hmac", 19 Path: "crypto/hmac", 20 Deps: map[string]string{ 21 "crypto/internal/boring": "boring", 22 "crypto/subtle": "subtle", 23 "hash": "hash", 24 }, 25 Interfaces: map[string]reflect.Type{}, 26 NamedTypes: map[string]reflect.Type{}, 27 AliasTypes: map[string]reflect.Type{}, 28 Vars: map[string]reflect.Value{}, 29 Funcs: map[string]reflect.Value{ 30 "Equal": reflect.ValueOf(q.Equal), 31 "New": reflect.ValueOf(q.New), 32 }, 33 TypedConsts: map[string]igop.TypedConst{}, 34 UntypedConsts: map[string]igop.UntypedConst{}, 35 }) 36 }