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

  /external/curl/lib/
md5.c 136 HCRYPTHASH hHash;
143 CryptCreateHash(ctx->hCryptProv, CALG_MD5, 0, 0, &ctx->hHash);
151 CryptHashData(ctx->hHash, (unsigned char *)input, inputLen, 0);
157 CryptGetHashParam(ctx->hHash, HP_HASHVAL, NULL, &length, 0);
159 CryptGetHashParam(ctx->hHash, HP_HASHVAL, digest, &length, 0);
160 if(ctx->hHash)
161 CryptDestroyHash(ctx->hHash);
  /external/curl/src/
tool_metalink.c 80 HCRYPTHASH hHash;
385 CryptGetHashParam(ctx->hHash, HP_HASHVAL, NULL, &length, 0);
387 CryptGetHashParam(ctx->hHash, HP_HASHVAL, digest, &length, 0);
388 if(ctx->hHash)
389 CryptDestroyHash(ctx->hHash);
398 CryptCreateHash(ctx->hCryptProv, CALG_MD5, 0, 0, &ctx->hHash);
407 CryptHashData(ctx->hHash, (unsigned char *)input, inputLen, 0);
419 CryptCreateHash(ctx->hCryptProv, CALG_SHA1, 0, 0, &ctx->hHash);
428 CryptHashData(ctx->hHash, (unsigned char *)input, inputLen, 0);
440 CryptCreateHash(ctx->hCryptProv, CALG_SHA_256, 0, 0, &ctx->hHash);
    [all...]

Completed in 69 milliseconds