aboutsummaryrefslogtreecommitdiff
path: root/ber/bits.go
diff options
context:
space:
mode:
Diffstat (limited to 'ber/bits.go')
-rw-r--r--ber/bits.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/ber/bits.go b/ber/bits.go
new file mode 100644
index 0000000..42474e5
--- /dev/null
+++ b/ber/bits.go
@@ -0,0 +1,18 @@
+package ber
+
+// BitString
+type Bits struct {
+ Bytes []byte
+ Length int
+}
+
+func parseBitString(b []byte) (bs Bits) {
+ padding := int(b[0])
+ bs.Length = (len(b)-1)*8 - padding
+ bs.Bytes = b[1:]
+ return
+}
+
+func UnmarshalBitString(b []byte) Bits {
+ return parseBitString(b)
+}