1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
// Code generated by 'yaegi extract crypto/sha512'. DO NOT EDIT.
//go:build go1.21 && !go1.22
// +build go1.21,!go1.22
package stdlib
import (
"crypto/sha512"
"go/constant"
"go/token"
"reflect"
)
func init() {
Symbols["crypto/sha512/sha512"] = map[string]reflect.Value{
// function, constant and variable definitions
"BlockSize": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)),
"New": reflect.ValueOf(sha512.New),
"New384": reflect.ValueOf(sha512.New384),
"New512_224": reflect.ValueOf(sha512.New512_224),
"New512_256": reflect.ValueOf(sha512.New512_256),
"Size": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)),
"Size224": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)),
"Size256": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)),
"Size384": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)),
"Sum384": reflect.ValueOf(sha512.Sum384),
"Sum512": reflect.ValueOf(sha512.Sum512),
"Sum512_224": reflect.ValueOf(sha512.Sum512_224),
"Sum512_256": reflect.ValueOf(sha512.Sum512_256),
}
}
|