generateN method

  1. @visibleForTesting
Uint8List generateN({
  1. required Uint8List M,
})

Implementation

@visibleForTesting
Uint8List generateN({required final Uint8List M}) {
  final upN = Uint8List.fromList(_ssc.toBytes() + M);
  return ISO9797.pad(upN, blockLen());
}