* feat: support go1.11 and go 1.12. * chore: generate. * fix: build constraint. * exclude importer.For * generate go 1.11
23 lines
516 B
Go
23 lines
516 B
Go
// +build go1.11,!go1.12
|
|
|
|
package stdlib
|
|
|
|
// Code generated by 'goexports crypto/des'. DO NOT EDIT.
|
|
|
|
import (
|
|
"crypto/des"
|
|
"reflect"
|
|
)
|
|
|
|
func init() {
|
|
Value["crypto/des"] = map[string]reflect.Value{
|
|
// function, constant and variable definitions
|
|
"BlockSize": reflect.ValueOf(des.BlockSize),
|
|
"NewCipher": reflect.ValueOf(des.NewCipher),
|
|
"NewTripleDESCipher": reflect.ValueOf(des.NewTripleDESCipher),
|
|
|
|
// type definitions
|
|
"KeySizeError": reflect.ValueOf((*des.KeySizeError)(nil)),
|
|
}
|
|
}
|