aboutsummaryrefslogtreecommitdiff
path: root/ber/obj.go
diff options
context:
space:
mode:
Diffstat (limited to 'ber/obj.go')
-rw-r--r--ber/obj.go17
1 files changed, 17 insertions, 0 deletions
diff --git a/ber/obj.go b/ber/obj.go
new file mode 100644
index 0000000..e9db78c
--- /dev/null
+++ b/ber/obj.go
@@ -0,0 +1,17 @@
+package ber
+
+func base128(i int) (b []byte) {
+ return b
+}
+
+func debase128(b []byte) int {
+ return 0
+}
+
+func marshalObj(obj []int) []byte {
+ return []byte{}
+}
+
+func unmarshalObj(b []byte) []int {
+ return []int{}
+}