github.com/goplus/igop@v0.25.0/pkg/crypto/rc4/go114_export.go (about)

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