aboutsummaryrefslogtreecommitdiff
path: root/ber/string.go
diff options
context:
space:
mode:
Diffstat (limited to 'ber/string.go')
-rw-r--r--ber/string.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/ber/string.go b/ber/string.go
index 77d0ea4..98eb617 100644
--- a/ber/string.go
+++ b/ber/string.go
@@ -1,9 +1,9 @@
package ber
-func marshalString(s string) []byte {
+func MarshalString(s string) []byte {
return []byte(s)
}
-func unmarshalString(b []byte) string {
+func UnmarshalString(b []byte) string {
return string(b)
}