-
Notifications
You must be signed in to change notification settings - Fork 14
/
go120_export.go
executable file
·46 lines (40 loc) · 1.11 KB
/
go120_export.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// export by github.com/goplus/igop/cmd/qexp
//go:build go1.20
// +build go1.20
package aes
import (
q "crypto/aes"
"go/constant"
"reflect"
"github.com/goplus/igop"
)
func init() {
igop.RegisterPackage(&igop.Package{
Name: "aes",
Path: "crypto/aes",
Deps: map[string]string{
"crypto/cipher": "cipher",
"crypto/internal/alias": "alias",
"crypto/internal/boring": "boring",
"crypto/subtle": "subtle",
"encoding/binary": "binary",
"errors": "errors",
"internal/cpu": "cpu",
"internal/goarch": "goarch",
"strconv": "strconv",
},
Interfaces: map[string]reflect.Type{},
NamedTypes: map[string]reflect.Type{
"KeySizeError": reflect.TypeOf((*q.KeySizeError)(nil)).Elem(),
},
AliasTypes: map[string]reflect.Type{},
Vars: map[string]reflect.Value{},
Funcs: map[string]reflect.Value{
"NewCipher": reflect.ValueOf(q.NewCipher),
},
TypedConsts: map[string]igop.TypedConst{},
UntypedConsts: map[string]igop.UntypedConst{
"BlockSize": {"untyped int", constant.MakeInt64(int64(q.BlockSize))},
},
})
}