Gets the signature value (the raw signature bits) from the certificate.
List<int>? get signature { var data = asn1?[0].subAtIndex(2)?.value; return data is List<int> ? data : null; }