* feat: support go1.11 and go 1.12. * chore: generate. * fix: build constraint. * exclude importer.For * generate go 1.11
26 lines
705 B
Go
26 lines
705 B
Go
// +build go1.12,!go1.13
|
|
|
|
package stdlib
|
|
|
|
// Code generated by 'goexports crypto/subtle'. DO NOT EDIT.
|
|
|
|
import (
|
|
"crypto/subtle"
|
|
"reflect"
|
|
)
|
|
|
|
func init() {
|
|
Value["crypto/subtle"] = map[string]reflect.Value{
|
|
// function, constant and variable definitions
|
|
"ConstantTimeByteEq": reflect.ValueOf(subtle.ConstantTimeByteEq),
|
|
"ConstantTimeCompare": reflect.ValueOf(subtle.ConstantTimeCompare),
|
|
"ConstantTimeCopy": reflect.ValueOf(subtle.ConstantTimeCopy),
|
|
"ConstantTimeEq": reflect.ValueOf(subtle.ConstantTimeEq),
|
|
"ConstantTimeLessOrEq": reflect.ValueOf(subtle.ConstantTimeLessOrEq),
|
|
"ConstantTimeSelect": reflect.ValueOf(subtle.ConstantTimeSelect),
|
|
|
|
// type definitions
|
|
|
|
}
|
|
}
|