Parses a 264-byte array into a public key.
Format: n (256 bytes) || e (8 bytes), all in big-endian.
static PublicKey fromBytes(Uint8List bytes) => PublicKey._(ffi.RsaPublicKey.fromBytes(bytes: bytes));