23 lines
484 B
Go
23 lines
484 B
Go
// Code generated by 'yaegi extract encoding/pem'. DO NOT EDIT.
|
|
|
|
// +build go1.16
|
|
|
|
package stdlib
|
|
|
|
import (
|
|
"encoding/pem"
|
|
"reflect"
|
|
)
|
|
|
|
func init() {
|
|
Symbols["encoding/pem"] = map[string]reflect.Value{
|
|
// function, constant and variable definitions
|
|
"Decode": reflect.ValueOf(pem.Decode),
|
|
"Encode": reflect.ValueOf(pem.Encode),
|
|
"EncodeToMemory": reflect.ValueOf(pem.EncodeToMemory),
|
|
|
|
// type definitions
|
|
"Block": reflect.ValueOf((*pem.Block)(nil)),
|
|
}
|
|
}
|