Returns a Future that resolves to the result of signing data with the private key held internally by a given instance
data
Future<Signature> sign(List<int> data) { return ed25519.sign(data, _keyPair); }