CmacUpdate Method
CmacUpdate(ReadOnlySpan<byte>)
Continue the CMAC operation with the given input data.
C#
void CmacUpdate(ReadOnlySpan<byte> dataToMac)
Parameters
Type | Name | Description |
---|---|---|
ReadOnlySpan<byte> | dataToMac | The next amount of data to process. |
Remarks
Call this with the next amount of data that is to be processed. When
there is no more data to process, call Final
.