aboutsummaryrefslogtreecommitdiff
path: root/ber/string.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-09-26 12:04:34 +0200
committerDimitri Sokolyuk <demon@dim13.org>2015-09-26 12:04:34 +0200
commit54caa4e7e085e177ff05b719ae247d21fe8c257e (patch)
tree363400fe1c6c1e7b696c72caaabc4882756355fa /ber/string.go
parent1fcefc99a82bac6ce725b6f11277e4aa291a7f51 (diff)
Replace with new implementation
Diffstat (limited to 'ber/string.go')
-rw-r--r--ber/string.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/ber/string.go b/ber/string.go
deleted file mode 100644
index 98eb617..0000000
--- a/ber/string.go
+++ /dev/null
@@ -1,9 +0,0 @@
-package ber
-
-func MarshalString(s string) []byte {
- return []byte(s)
-}
-
-func UnmarshalString(b []byte) string {
- return string(b)
-}