#include "scan.h" /* ASN.1 DER tag encoding parser. * Write value as big endian series of bytes, each containing seven * bits. In each byte except the last, set the highest bit. * Examples: * 0 -> 0x00 * 5 -> 0x05 * 0xc2 -> 0x81 0x42 */ size_t scan_asn1dertag(const char* src,size_t len,unsigned long long* length) { size_t n; unsigned long long l=0; if (len==0 || (unsigned char)src[0]==0x80) return 0; // catch non-minimal encoding for (n=0; n>(sizeof(l)*8-7)) return 0; // catch integer overflow l=(l<<7) | (src[n]&0x7f); /* if high bit not set, this is the last byte in the sequence */ if (!(src[n]&0x80)) { *length=l; return n+1; } } return 0; }