package ber func marshalString(s string) []byte { return []byte(s) } func unmarshalString(b []byte) string { return string(b) }