Name Description Size
DottedOIDToCode.py Given an integral value, returns an array of the base-128 representation of that value, with all but the last byte having the high bit set as required by the DER rules for the nodes of an OID after the first two bytes. >>> base128(1) [1] >>> base128(10045) [206, 61] 8001