* feat: support go1.22 * Temporary fix for consistency tests due to language change in for loops * review: clean old files --------- Co-authored-by: Fernandez Ludovic <ldez@users.noreply.github.com>
20 lines
376 B
Go
20 lines
376 B
Go
// Code generated by 'yaegi extract crypto/hmac'. DO NOT EDIT.
|
|
|
|
//go:build go1.21 && !go1.22
|
|
// +build go1.21,!go1.22
|
|
|
|
package stdlib
|
|
|
|
import (
|
|
"crypto/hmac"
|
|
"reflect"
|
|
)
|
|
|
|
func init() {
|
|
Symbols["crypto/hmac/hmac"] = map[string]reflect.Value{
|
|
// function, constant and variable definitions
|
|
"Equal": reflect.ValueOf(hmac.Equal),
|
|
"New": reflect.ValueOf(hmac.New),
|
|
}
|
|
}
|