github.com/goplus/igop@v0.25.0/pkg/crypto/subtle/go121_export.go (about) 1 // export by github.com/goplus/igop/cmd/qexp 2 3 //go:build go1.21 4 // +build go1.21 5 6 package subtle 7 8 import ( 9 q "crypto/subtle" 10 11 "reflect" 12 13 "github.com/goplus/igop" 14 ) 15 16 func init() { 17 igop.RegisterPackage(&igop.Package{ 18 Name: "subtle", 19 Path: "crypto/subtle", 20 Deps: map[string]string{}, 21 Interfaces: map[string]reflect.Type{}, 22 NamedTypes: map[string]reflect.Type{}, 23 AliasTypes: map[string]reflect.Type{}, 24 Vars: map[string]reflect.Value{}, 25 Funcs: map[string]reflect.Value{ 26 "ConstantTimeByteEq": reflect.ValueOf(q.ConstantTimeByteEq), 27 "ConstantTimeCompare": reflect.ValueOf(q.ConstantTimeCompare), 28 "ConstantTimeCopy": reflect.ValueOf(q.ConstantTimeCopy), 29 "ConstantTimeEq": reflect.ValueOf(q.ConstantTimeEq), 30 "ConstantTimeLessOrEq": reflect.ValueOf(q.ConstantTimeLessOrEq), 31 "ConstantTimeSelect": reflect.ValueOf(q.ConstantTimeSelect), 32 "XORBytes": reflect.ValueOf(q.XORBytes), 33 }, 34 TypedConsts: map[string]igop.TypedConst{}, 35 UntypedConsts: map[string]igop.UntypedConst{}, 36 }) 37 }