decipher method

Uint8List decipher(
  1. List<int> ciphertext
)

Implementation

Uint8List decipher(List<int> ciphertext) {
  final data = [0x00, ...ciphertext];
  return _toApdu(
      0x00, Instruction.performSecurityOperation, 0x80, 0x86, data);
}