Files
moxa/stdlib/go1_16_crypto_aes.go
Ludovic Fernandez 8bb5daf60e feat: update stdlib mapping for go1.16
- drop stdlib for go1.14
- generate stdlib for go1.16
-  update CI configuration.
2021-02-17 10:02:03 +01:00

24 lines
489 B
Go

// Code generated by 'yaegi extract crypto/aes'. DO NOT EDIT.
// +build go1.16
package stdlib
import (
"crypto/aes"
"go/constant"
"go/token"
"reflect"
)
func init() {
Symbols["crypto/aes"] = map[string]reflect.Value{
// function, constant and variable definitions
"BlockSize": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)),
"NewCipher": reflect.ValueOf(aes.NewCipher),
// type definitions
"KeySizeError": reflect.ValueOf((*aes.KeySizeError)(nil)),
}
}