Lines Matching defs:sha1_ctx
24 SHA1_CTX *sha1_ctx = ctx;
25 SHA1Update(sha1_ctx, data, size);
31 SHA1_CTX *sha1_ctx = ctx;
32 SHA1Final(result, sha1_ctx);
33 free(sha1_ctx);
52 CC_SHA1_CTX *sha1_ctx = ctx;
53 CC_SHA1_Update(sha1_ctx, data, size);
59 CC_SHA1_CTX *sha1_ctx = ctx;
60 CC_SHA1_Final(result, sha1_ctx);
61 free(sha1_ctx);
110 sha1_ctx *ctx = malloc(sizeof(*ctx));