toHexes method

List<String> toHexes()

Implementation

List<String> toHexes() {
  return [
    R.toRadixString(16).padLeft(64, '0'),
    S.toRadixString(16).padLeft(64, '0')
  ];
}