2019-08-09 20:36:45 +03:00
|
|
|
package stdlib
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/hex"
|
2019-12-20 22:40:38 +03:00
|
|
|
|
2019-12-30 00:38:51 +03:00
|
|
|
"github.com/d5/tengo/v2"
|
2019-08-09 20:36:45 +03:00
|
|
|
)
|
|
|
|
|
2019-12-20 22:40:38 +03:00
|
|
|
var hexModule = map[string]tengo.Object{
|
|
|
|
"encode": &tengo.UserFunction{Value: FuncAYRS(hex.EncodeToString)},
|
|
|
|
"decode": &tengo.UserFunction{Value: FuncASRYE(hex.DecodeString)},
|
2019-08-09 20:36:45 +03:00
|
|
|
}
|