package ber func MarshalString(s string) []byte { return []byte(s) } func UnmarshalString(b []byte) string { return string(b) }