summaryrefslogtreecommitdiffstats
path: root/fmt_asn1bitstring.c
diff options
context:
space:
mode:
authorSimon Rettberg2014-03-15 01:49:50 +0100
committerSimon Rettberg2014-03-15 01:49:50 +0100
commitbedd2e7ccb1595c23e159eaa952ae1b0b5a3d2ad (patch)
treec7d1995a09f6ed0c4e6873252e957d72f5d07d07 /fmt_asn1bitstring.c
downloadldadp-bedd2e7ccb1595c23e159eaa952ae1b0b5a3d2ad.tar.gz
ldadp-bedd2e7ccb1595c23e159eaa952ae1b0b5a3d2ad.tar.xz
ldadp-bedd2e7ccb1595c23e159eaa952ae1b0b5a3d2ad.zip
Lean and mean initial commit
Not much functionality yet
Diffstat (limited to 'fmt_asn1bitstring.c')
-rw-r--r--fmt_asn1bitstring.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/fmt_asn1bitstring.c b/fmt_asn1bitstring.c
new file mode 100644
index 0000000..18df19d
--- /dev/null
+++ b/fmt_asn1bitstring.c
@@ -0,0 +1,19 @@
+#include "asn1.h"
+#include "byte.h"
+
+/* like fmt_asn1string, but l is in BITS, not BYTES */
+size_t fmt_asn1bitstring(char* dest,enum asn1_tagclass tc,enum asn1_tagtype tt,enum asn1_tag tag,const char* c,size_t l) {
+ size_t len;
+ size_t actuallen;
+ if (l>(size_t)-100) return (size_t)-1;
+ actuallen=1+(l+7)/8; /* add one octet to specify the unused bits in the last octet, and calculate octets needed */
+ len=fmt_asn1transparent(dest,tc,tt,tag,actuallen);
+ if (dest) {
+ if (l)
+ dest[len]=7-((l-1)%8);
+ else
+ dest[len]=0;
+ byte_copy(dest+len+1,actuallen-1,c);
+ }
+ return len+actuallen;
+}