* chore: generate stdlib for go1.13 * chore: update CI configuration. * fix: struct13 test is too dependent of the Go implementation. * fix: disable test import4.go
24 lines
550 B
Go
24 lines
550 B
Go
// Code generated by 'goexports crypto/ecdsa'. DO NOT EDIT.
|
|
|
|
// +build go1.13,!go1.14
|
|
|
|
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)),
|
|
}
|
|
}
|