Fix bitstring asn1 encoding and decoding
http-signature/asn1.scm
114 | 114 | (make-asn1-type | |
115 | 115 | "bitstring" 3 #t #t | |
116 | 116 | (lambda (bv pos len) | |
117 | - | (let ((ans (make-bytevector (- len 1)))) | |
118 | - | (bytevector-copy! bv (+ pos 1) ans 0 (- len 1)) | |
119 | - | ans)) | |
117 | + | (if (= len 0) | |
118 | + | (make-bytevector 0) | |
119 | + | (let ((ans (make-bytevector (- len 1)))) | |
120 | + | (bytevector-copy! bv (+ pos 1) ans 0 (- len 1)) | |
121 | + | ans))) | |
120 | 122 | (lambda (value) | |
121 | - | (let ((ans (make-bytevector (+ (bytevector-length value) 1)))) | |
122 | - | (bytevector-u8-set! ans 0 0) | |
123 | - | (bytevector-copy! value 0 ans 1 (bytevector-length value)) | |
124 | - | ans)) | |
123 | + | (if (= (bytevector-length value) 0) | |
124 | + | (make-bytevector 0) | |
125 | + | (let ((ans (make-bytevector (+ (bytevector-length value) 1)))) | |
126 | + | (bytevector-u8-set! ans 0 0) | |
127 | + | (bytevector-copy! value 0 ans 1 (bytevector-length value)) | |
128 | + | ans))) | |
125 | 129 | (lambda (value) | |
126 | 130 | (apply bv-append value)))) | |
127 | 131 |
tests/asn1.scm
50 | 50 | ||
51 | 51 | (test-assert "asn1 bit string decoding" | |
52 | 52 | (and | |
53 | - | (bv-equal? (decode-asn1 #vu8(#x03 #x00) asn1:bitstring) #vu8()) | |
54 | - | (bv-equal? (decode-asn1 #vu8(#x03 #x02 #x01 #x50) asn1:bitstring) #vu8(#x01 #x50)))) | |
53 | + | (bv-equal? (decode-asn1 #vu8(#x03 #x01 #x00) asn1:bitstring) #vu8()) | |
54 | + | (bv-equal? (decode-asn1 #vu8(#x03 #x03 #x00 #x01 #x50) asn1:bitstring) #vu8(#x01 #x50)))) | |
55 | 55 | ||
56 | 56 | (test-assert "asn1 bit string constructed decoding" | |
57 | 57 | (and | |
… | |||
59 | 59 | #x03 #x05 #x04 #x5f #x29 #x1c #xd0 | |
60 | 60 | #x00 #x00) | |
61 | 61 | asn1:bitstring) | |
62 | - | #vu8(#x00 #x0a #x3b #x04 #x5f #x29 #x1c #xd0)) | |
62 | + | #vu8(#x0a #x3b #x5f #x29 #x1c #xd0)) | |
63 | 63 | (bv-equal? (decode-asn1 #vu8(#x23 #x80 #x03 #x00 | |
64 | - | #x23 #x80 #x03 #x01 #x5f | |
65 | - | #x03 #x01 #x1e | |
64 | + | #x23 #x80 #x03 #x02 #x00 #x5f | |
65 | + | #x03 #x02 #x00 #x1e | |
66 | 66 | #x00 #x00 | |
67 | - | #x03 #x02 #x5e #x22 | |
67 | + | #x03 #x03 #x00 #x5e #x22 | |
68 | 68 | #x00 #x00) | |
69 | 69 | asn1:bitstring) | |
70 | 70 | #vu8(#x5f #x1e #x5e #x22)))) | |
… | |||
124 | 124 | (test-assert "asn1 bit string encoding" | |
125 | 125 | (and | |
126 | 126 | (bv-equal? (encode-asn1 asn1:bitstring #vu8()) #vu8(#x03 #x00)) | |
127 | - | (bv-equal? (encode-asn1 asn1:bitstring #vu8(#x5e #x11)) #vu8(#x03 #x02 #x5e #x11)))) | |
127 | + | (bv-equal? (encode-asn1 asn1:bitstring #vu8(#x5e #x11)) #vu8(#x03 #x03 #x00 #x5e #x11)))) | |
128 | 128 | ||
129 | 129 | (test-assert "asn1 octet string encoding" | |
130 | 130 | (and |