Home | History | Annotate | Download | only in dbus

Lines Matching refs:digest

369 md5_finish (DBusMD5Context *context, unsigned char digest[16])
388 digest[i] = (unsigned char)(context->abcd[i >> 2] >> ((i & 3) << 3));
431 * MD5 finalization. Ends an MD5 message-digest operation, writing the
432 * the message digest and zeroing the context. The results are
433 * returned as a raw 16-byte digest, not as the ascii-hex-digits
434 * string form of the digest.
437 * @param results string to append the 16-byte MD5 digest to
438 * @returns #FALSE if not enough memory to append the digest
445 unsigned char digest[16];
447 md5_finish (context, digest);
449 if (!_dbus_string_append_len (results, digest, 16))
473 DBusString digest;
479 if (!_dbus_string_init (&digest))
482 if (!_dbus_md5_final (&context, &digest))
485 if (!_dbus_string_hex_encode (&digest, 0, ascii_output,
489 _dbus_string_free (&digest);
494 _dbus_string_free (&digest);
571 CHECK ("message digest", "f96b697d7cb7938d525a2f31aaf161d0");