Lines Matching refs:ctx
271 MD5_CTX ctx;
274 MD5_Init(&ctx);
275 MD5_Update(&ctx, &type, sizeof(uint16_t));
276 MD5_Update(&ctx, secret, secret_length);
277 MD5_Update(&ctx, vector, vector_length);
278 MD5_Final(hash, &ctx);
283 MD5_Init(&ctx);
284 MD5_Update(&ctx, secret, secret_length);
285 MD5_Update(&ctx, &p->value[i - MD5_DIGEST_LENGTH],
287 MD5_Final(hash, &ctx);
376 MD5_CTX ctx;
377 MD5_Init(&ctx);
378 MD5_Update(&ctx, &type, sizeof(uint8_t));
379 MD5_Update(&ctx, secret, secret_length);
380 MD5_Update(&ctx, challenge, size);
381 MD5_Final(response, &ctx);