ecSign method

Uint8List ecSign(
  1. List<int> data
)

Implementation

Uint8List ecSign(List<int> data) {
  final digest = sha512.hashSync(data);
  return _toApdu(
      0x00, Instruction.performSecurityOperation, 0x9E, 0x9A, digest.bytes);
}