fromBytes static method

Future<SchnorrKeyshare> fromBytes(
  1. Iterable<int> bytes
)

Implementation

static Future<SchnorrKeyshare> fromBytes(Iterable<int> bytes) async {
  final keyshareHandle = await schnorrKeyshareFromBytes(data: bytes.toList());
  return SchnorrKeyshare(handle: keyshareHandle);
}