beanit / asn1bean

ASN1bean (formerly known as jASN1) is a Java ASN.1 BER and DER encoding/decoding library
https://www.beanit.com/asn1/
Apache License 2.0
110 stars 45 forks source link

Extendlable bit-string #36

Open HeeroYui opened 3 years ago

HeeroYui commented 3 years ago

the code:

LaneAttributes-Vehicle ::= BIT STRING {
  isVehicleRevocableLane          (0),
  isVehicleFlyOverLane            (1),
  hovLaneUseOnly                  (2),
  restrictedToBusUse              (3),
  restrictedToTaxiUse             (4),
  restrictedFromPublicUse         (5),
  hasIRbeaconCoverage             (6),
  permissionOnRequest             (7),
  autonomousDrivingProhibitedLane (8)
} (SIZE (8,...))

in SIZE, the , is not supported.