Get |ASN.1| value as a sequence of 8-bit integers. If |ASN.1| object length is not a multiple of 8, result will be left-padded with zeros.
(self)
| 534 | return float(self._value) |
| 535 | |
| 536 | def asNumbers(self): |
| 537 | """Get |ASN.1| value as a sequence of 8-bit integers. |
| 538 | |
| 539 | If |ASN.1| object length is not a multiple of 8, result |
| 540 | will be left-padded with zeros. |
| 541 | """ |
| 542 | return tuple(self.asOctets()) |
| 543 | |
| 544 | def asOctets(self): |
| 545 | """Get |ASN.1| value as a sequence of octets. |