HomeSort by relevance Sort by last modified time
    Searched defs:hHash (Results 1 - 2 of 2) sorted by null

  /external/curl/lib/
md5.c 134 HCRYPTHASH hHash;
141 CryptCreateHash(ctx->hCryptProv, CALG_MD5, 0, 0, &ctx->hHash);
149 CryptHashData(ctx->hHash, (unsigned char *)input, inputLen, 0);
155 CryptGetHashParam(ctx->hHash, HP_HASHVAL, NULL, &length, 0);
157 CryptGetHashParam(ctx->hHash, HP_HASHVAL, digest, &length, 0);
158 if(ctx->hHash)
159 CryptDestroyHash(ctx->hHash);
  /external/curl/src/
tool_metalink.c 79 HCRYPTHASH hHash;
386 CryptGetHashParam(ctx->hHash, HP_HASHVAL, NULL, &length, 0);
388 CryptGetHashParam(ctx->hHash, HP_HASHVAL, digest, &length, 0);
389 if(ctx->hHash)
390 CryptDestroyHash(ctx->hHash);
399 CryptCreateHash(ctx->hCryptProv, CALG_MD5, 0, 0, &ctx->hHash);
408 CryptHashData(ctx->hHash, (unsigned char *)input, inputLen, 0);
420 CryptCreateHash(ctx->hCryptProv, CALG_SHA1, 0, 0, &ctx->hHash);
429 CryptHashData(ctx->hHash, (unsigned char *)input, inputLen, 0);
441 CryptCreateHash(ctx->hCryptProv, CALG_SHA_256, 0, 0, &ctx->hHash);
    [all...]

Completed in 646 milliseconds