1// this file was generated by gomacro command: import _b "crypto/ecdsa"
2// DO NOT EDIT! Any change will be lost when the file is re-generated
3
4package imports
5
6import (
7	. "reflect"
8	"crypto/ecdsa"
9)
10
11// reflection: allow interpreted code to import "crypto/ecdsa"
12func init() {
13	Packages["crypto/ecdsa"] = Package{
14	Binds: map[string]Value{
15		"GenerateKey":	ValueOf(ecdsa.GenerateKey),
16		"Sign":	ValueOf(ecdsa.Sign),
17		"Verify":	ValueOf(ecdsa.Verify),
18	}, Types: map[string]Type{
19		"PrivateKey":	TypeOf((*ecdsa.PrivateKey)(nil)).Elem(),
20		"PublicKey":	TypeOf((*ecdsa.PublicKey)(nil)).Elem(),
21	},
22	}
23}
24