Returns the key's raw bytes
@override Uint8List get raw { final asn1Sequence = pc.ASN1Sequence(); asn1Sequence.add(pc.ASN1Integer(_key.modulus)); asn1Sequence.add(pc.ASN1Integer(_key.exponent)); return Uint8List.fromList(asn1Sequence.encode()); }