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

  /external/boringssl/src/crypto/fipsmodule/digest/
digests.c 130 static void sha1_update(EVP_MD_CTX *ctx, const void *data, size_t count) { function
131 CHECK(SHA1_Update(ctx->md_data, data, count));
143 out->update = sha1_update;
260 SHA1_Update(&ctx->sha1, data, count));
  /external/u-boot/lib/
sha1.c 225 void sha1_update(sha1_context *ctx, const unsigned char *input, function
288 sha1_update (ctx, (unsigned char *) sha1_padding, padn);
289 sha1_update (ctx, msglen, 8);
307 sha1_update (&ctx, input, ilen);
333 sha1_update (&ctx, curr, chunk);
338 sha1_update (&ctx, input, ilen);
369 sha1_update (&ctx, k_ipad, 64);
370 sha1_update (&ctx, input, ilen);
374 sha1_update (&ctx, k_opad, 64);
375 sha1_update (&ctx, tmpbuf, 20)
    [all...]

Completed in 6758 milliseconds