-
Notifications
You must be signed in to change notification settings - Fork 14
/
go120_export.go
executable file
·51 lines (45 loc) · 1.45 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
47
48
49
50
51
// export by github.com/goplus/igop/cmd/qexp
//go:build go1.20
// +build go1.20
package ecdh
import (
q "crypto/ecdh"
"reflect"
"github.com/goplus/igop"
)
func init() {
igop.RegisterPackage(&igop.Package{
Name: "ecdh",
Path: "crypto/ecdh",
Deps: map[string]string{
"crypto": "crypto",
"crypto/internal/boring": "boring",
"crypto/internal/edwards25519/field": "field",
"crypto/internal/nistec": "nistec",
"crypto/internal/randutil": "randutil",
"crypto/subtle": "subtle",
"encoding/binary": "binary",
"errors": "errors",
"io": "io",
"math/bits": "bits",
"sync": "sync",
},
Interfaces: map[string]reflect.Type{
"Curve": reflect.TypeOf((*q.Curve)(nil)).Elem(),
},
NamedTypes: map[string]reflect.Type{
"PrivateKey": reflect.TypeOf((*q.PrivateKey)(nil)).Elem(),
"PublicKey": reflect.TypeOf((*q.PublicKey)(nil)).Elem(),
},
AliasTypes: map[string]reflect.Type{},
Vars: map[string]reflect.Value{},
Funcs: map[string]reflect.Value{
"P256": reflect.ValueOf(q.P256),
"P384": reflect.ValueOf(q.P384),
"P521": reflect.ValueOf(q.P521),
"X25519": reflect.ValueOf(q.X25519),
},
TypedConsts: map[string]igop.TypedConst{},
UntypedConsts: map[string]igop.UntypedConst{},
})
}