Query: cchmacinit
OS: osx
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
CCHMAC(3) BSD Library Functions Manual CCHMAC(3)NAMECCHmacInit, CCHmacUpdate, CCHmacFinal, CCHmac -- Common HMAC Algorithm InterfacesLIBRARYThese functions are found in libSystem.SYNOPSIS#include <CommonCrypto/CommonHMAC.h> void CCHmacInit(CCHmacContext *ctx, CCHmacAlgorithm algorithm, const void *key, size_t keyLength); void CCHmacUpdate(CCHmacContext *ctx, const void *data, size_t dataLength); void CCHmacFinal(CCHmacContext *ctx, void *macOut); void CCHmac(CCHmacAlgorithm algorithm, const void *key, size_t keyLength, const void *data, size_t dataLength, void *macOut);DESCRIPTIONThis interface provides access to a number of HMAC algorithms. The following algorithms are available: kCCHmacAlgSHA1 - HMAC with SHA1 digest kCCHmacAlgMD5 - HMAC with MD5 digest kCCHmacAlgSHA256 - HMAC with SHA256 digest kCCHmacAlgSHA384 - HMAC with SHA384 digest kCCHmacAlgSHA224 - HMAC with SHA224 digest kCCHmacAlgSHA512 - HMAC with SHA512 digest The object declared in this interface, CCHmacContext, provides a handle for use with the CCHmacInit() CCHmacUpdate() and CCHmacFinal() calls to complete the HMAC operation. In addition there is a one shot function, CCHmac() that performs a complete HMAC on a single piece of data.HISTORYThese functions are available in OS X 10.5 and later.SEE ALSOCC_MD5(3cc), CC_SHA(3cc), CC_crypto(3cc), CCCrypto(3cc)BSDMarch 22, 2007 BSD
Related Man Pages |
---|
cchmacfinal(3) - mojave |
cc_crypto(3cc) - mojave |
cchmacinit(3) - osx |
cchmacupdate(3) - osx |
digest::hmac(3) - mojave |
Similar Topics in the Unix Linux Community |
---|
Cryotography -Linux API for HMAC-SHA256 algorithm |
Ubuntu: Mono vulnerabilities |
Ubuntu: 903-1: OpenOffice.org vulnerabilities |
Disable any 96-bit HMAC Algorithms |