nn::crypto::CalculateHmacSha256 Function

Syntax

void CalculateHmacSha256(
     void * pOut,
     const void * pData,
     size_t length,
     const void * pKeyData,
     size_t keyLength
);

Arguments

Name Description
out pOut Pointer to the location in which to store the HMAC value.
in pData Pointer to the input data.
in length Length of the input data.
in pKeyData Pointer to the key data.
in keyLength Length of the key data.

Return Values

None.

Description

Performs HMAC-SHA256 calculation.

Revision History

2010/01/07
Initial version.

CONFIDENTIAL