nn::util::Crc16::Update Member Function

Syntax

void Update(
     const void * input,
     size_t length
);

Arguments

Name Description
in input Pointer to the input data.
in length Size of the input data.

Return Values

None.

Description

Updates the CRC-16 hash value with the input data.

You need to initialize the context in advance with the nn::util::Crc16::InitializeContext function. Call this function as many times as needed, and then use the nn::util::Crc16::GetHash function to get the hash value. Any size and alignment position can be used for the input data.

Revision History

2010/10/15
Initial version.

CONFIDENTIAL