Files
moxa/stdlib/go1_14_crypto_ecdsa.go
2020-02-26 15:06:06 +01:00

24 lines
550 B
Go

// Code generated by 'goexports crypto/ecdsa'. DO NOT EDIT.
// +build go1.14,!go1.15
package stdlib
import (
"crypto/ecdsa"
"reflect"
)
func init() {
Symbols["crypto/ecdsa"] = map[string]reflect.Value{
// function, constant and variable definitions
"GenerateKey": reflect.ValueOf(ecdsa.GenerateKey),
"Sign": reflect.ValueOf(ecdsa.Sign),
"Verify": reflect.ValueOf(ecdsa.Verify),
// type definitions
"PrivateKey": reflect.ValueOf((*ecdsa.PrivateKey)(nil)),
"PublicKey": reflect.ValueOf((*ecdsa.PublicKey)(nil)),
}
}