Searched refs:CC_SHA256_CTX (Results 1 - 25 of 27) sorted by relevance

12

/macosx-10.10/WebCore-7600.1.25/crypto/mac/
H A DCryptoDigestMac.cpp45 inline CC_SHA256_CTX* toSHA224Context(CryptoDigestContext* context)
48 return static_cast<CC_SHA256_CTX*>(context->ccContext);
50 inline CC_SHA256_CTX* toSHA256Context(CryptoDigestContext* context)
53 return static_cast<CC_SHA256_CTX*>(context->ccContext);
108 CC_SHA256_CTX* context = new CC_SHA256_CTX;
114 CC_SHA256_CTX* context = new CC_SHA256_CTX;
/macosx-10.10/CommonCrypto-60061/include/
H A DCommonDigest.h173 } CC_SHA256_CTX; typedef in typeref:struct:CC_SHA256state_st
175 extern int CC_SHA224_Init(CC_SHA256_CTX *c)
178 extern int CC_SHA224_Update(CC_SHA256_CTX *c, const void *data, CC_LONG len)
181 extern int CC_SHA224_Final(unsigned char *md, CC_SHA256_CTX *c)
193 extern int CC_SHA256_Init(CC_SHA256_CTX *c)
196 extern int CC_SHA256_Update(CC_SHA256_CTX *c, const void *data, CC_LONG len)
199 extern int CC_SHA256_Final(unsigned char *md, CC_SHA256_CTX *c)
288 #define SHA256_CTX CC_SHA256_CTX
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/lib/
H A DSHA2_Object.h50 CC_SHA256_CTX mCtx;
67 CC_SHA256_CTX mCtx;
/macosx-10.10/Security-57031.1.35/Security/libsecurity_ssl/Security/
H A Dtls_digest.c259 #define SSL_SHA256_CONTEXT_SIZE (sizeof(CC_SHA256_CTX))
376 assert(digestCtx->length >= sizeof(CC_SHA256_CTX));
377 CC_SHA256_CTX *ctx = (CC_SHA256_CTX *)digestCtx->data;
386 assert(digestCtx->length >= sizeof(CC_SHA256_CTX));
387 CC_SHA256_CTX *ctx = (CC_SHA256_CTX *)digestCtx->data;
394 assert(digestCtx->length >= sizeof(CC_SHA256_CTX));
395 CC_SHA256_CTX *ctx = (CC_SHA256_CTX *)digestCt
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_ssl/lib/
H A Dtls_digest.c259 #define SSL_SHA256_CONTEXT_SIZE (sizeof(CC_SHA256_CTX))
376 assert(digestCtx->length >= sizeof(CC_SHA256_CTX));
377 CC_SHA256_CTX *ctx = (CC_SHA256_CTX *)digestCtx->data;
386 assert(digestCtx->length >= sizeof(CC_SHA256_CTX));
387 CC_SHA256_CTX *ctx = (CC_SHA256_CTX *)digestCtx->data;
394 assert(digestCtx->length >= sizeof(CC_SHA256_CTX));
395 CC_SHA256_CTX *ctx = (CC_SHA256_CTX *)digestCt
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_ssl/security_ssl/
H A Dtls_digest.c259 #define SSL_SHA256_CONTEXT_SIZE (sizeof(CC_SHA256_CTX))
376 assert(digestCtx->length >= sizeof(CC_SHA256_CTX));
377 CC_SHA256_CTX *ctx = (CC_SHA256_CTX *)digestCtx->data;
386 assert(digestCtx->length >= sizeof(CC_SHA256_CTX));
387 CC_SHA256_CTX *ctx = (CC_SHA256_CTX *)digestCtx->data;
394 assert(digestCtx->length >= sizeof(CC_SHA256_CTX));
395 CC_SHA256_CTX *ctx = (CC_SHA256_CTX *)digestCt
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_manifest/lib/
H A DDownload.h58 CC_SHA256_CTX mSHA256Context;
/macosx-10.10/mDNSResponder-561.1.1/mDNSMacOSX/
H A DCryptoSupport.c169 ptr = mDNSPlatformMemAllocate(sizeof(CC_SHA256_CTX));
171 CC_SHA256_Init((CC_SHA256_CTX *)ptr);
209 CC_SHA256_Update((CC_SHA256_CTX *)ctx->context, data, len);
233 CC_SHA256_Final(digest, (CC_SHA256_CTX *)ctx->context);
263 CC_SHA256_Final(digest, (CC_SHA256_CTX *)ctx->context);
290 ptr = mDNSPlatformMemAllocate(sizeof(CC_SHA256_CTX));
292 CC_SHA256_Init((CC_SHA256_CTX *)ptr);
339 CC_SHA256_Update((CC_SHA256_CTX *)ctx->context, data, len);
481 CC_SHA256_Final(digest, (CC_SHA256_CTX *)ctx->context);
653 CC_SHA256_Final(digest, (CC_SHA256_CTX *)ct
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_transform/lib/
H A DDigest.h100 CC_SHA256_CTX mContext;
116 CC_SHA256_CTX mContext;
/macosx-10.10/Security-57031.1.35/SecurityTests/cspxutils/sha2Time/
H A Dsha2Time.cpp78 CC_SHA256_CTX ctx256;
/macosx-10.10/CommonCrypto-60061/lib/
H A DCommonDigest.c466 } CC_SHA256_CTX;
480 CC_SHA256_Init(CC_SHA256_CTX *x)
484 ASSERT(sizeof(CC_SHA256_CTX) == sizeof(CC_SHA256_CTX_X));
496 CC_SHA256_Update(CC_SHA256_CTX *x, const void *data, CC_LONG len)
515 CC_SHA256_Final(unsigned char *md, CC_SHA256_CTX *x)
613 CC_SHA224_Init(CC_SHA256_CTX *c)
627 CC_SHA224_Update(CC_SHA256_CTX *c, const void *data, CC_LONG len)
634 CC_SHA224_Final(unsigned char *md, CC_SHA256_CTX *c)
/macosx-10.10/Security-57031.1.35/libsecurity_smime/Security/
H A Dcmsutil.c258 digobj = calloc(1, sizeof(CC_SHA256_CTX));
262 digobj = calloc(1, sizeof(CC_SHA256_CTX));
H A Dcmsdigest.c193 case SEC_OID_SHA224: CC_SHA224_Update((CC_SHA256_CTX *)cmsdigcx->digobjs[i], data, (CC_LONG)len); break;
194 case SEC_OID_SHA256: CC_SHA256_Update((CC_SHA256_CTX *)cmsdigcx->digobjs[i], data, (CC_LONG)len); break;
/macosx-10.10/Security-57031.1.35/libsecurity_smime/lib/
H A Dcmsutil.c258 digobj = calloc(1, sizeof(CC_SHA256_CTX));
262 digobj = calloc(1, sizeof(CC_SHA256_CTX));
H A Dcmsdigest.c193 case SEC_OID_SHA224: CC_SHA224_Update((CC_SHA256_CTX *)cmsdigcx->digobjs[i], data, (CC_LONG)len); break;
194 case SEC_OID_SHA256: CC_SHA256_Update((CC_SHA256_CTX *)cmsdigcx->digobjs[i], data, (CC_LONG)len); break;
/macosx-10.10/Security-57031.1.35/libsecurity_smime/security_smime/
H A Dcmsutil.c258 digobj = calloc(1, sizeof(CC_SHA256_CTX));
262 digobj = calloc(1, sizeof(CC_SHA256_CTX));
H A Dcmsdigest.c193 case SEC_OID_SHA224: CC_SHA224_Update((CC_SHA256_CTX *)cmsdigcx->digobjs[i], data, (CC_LONG)len); break;
194 case SEC_OID_SHA256: CC_SHA256_Update((CC_SHA256_CTX *)cmsdigcx->digobjs[i], data, (CC_LONG)len); break;
/macosx-10.10/Security-57031.1.35/SecurityTests/cspxutils/ccOpensslCompat/
H A DdigestCommon.h51 #define SHA256_CTX CC_SHA256_CTX
/macosx-10.10/CommonCrypto-60061/test/CommonCrypto/
H A DCommonDigest.c196 #define CC_SHA224_CTX CC_SHA256_CTX
260 CC_SHA256_CTX ctx;
270 CC_SHA256_CTX ctx;
/macosx-10.10/Security-57031.1.35/SecurityTests/cspxutils/sha2Vectors/
H A Dsha2Vectors.cpp223 CC_SHA256_CTX ctx224;
257 CC_SHA256_CTX ctx256;
/macosx-10.10/Security-57031.1.35/Security/include/security_ocspd/
H A DocspdUtils.cpp311 CC_SHA256_CTX ctx;
/macosx-10.10/Security-57031.1.35/Security/libsecurity_ocspd/common/
H A DocspdUtils.cpp311 CC_SHA256_CTX ctx;
/macosx-10.10/Security-57031.1.35/SecurityTests/cspxutils/hashTimeSA/
H A DhashTimeSA.cpp168 CC_SHA256_CTX sha256;
/macosx-10.10/libarchive-30/libarchive/libarchive/
H A Darchive_hash.h158 typedef CC_SHA256_CTX archive_sha256_ctx;
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/
H A Devp-cc.c715 sizeof(CC_SHA256_CTX),

Completed in 302 milliseconds

12