Get |ASN.1| value as a sequence of octets. If |ASN.1| object length is not a multiple of 8, result will be left-padded with zeros.
(self)
| 542 | return tuple(self.asOctets()) |
| 543 | |
| 544 | def asOctets(self): |
| 545 | """Get |ASN.1| value as a sequence of octets. |
| 546 | |
| 547 | If |ASN.1| object length is not a multiple of 8, result |
| 548 | will be left-padded with zeros. |
| 549 | """ |
| 550 | return integer.to_bytes(self._value, length=len(self)) |
| 551 | |
| 552 | def asInteger(self): |
| 553 | """Get |ASN.1| value as a single integer value. |
no outgoing calls
no test coverage detected