github.com/goplus/igop@v0.25.0/pkg/crypto/subtle/go115_export.go (about)

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