Functions | |
void | _dbus_md5_init (DBusMD5Context *context) |
Initializes the MD5 context. More... | |
void | _dbus_md5_update (DBusMD5Context *context, const DBusString *data) |
Feeds more data into an existing md5sum computation. More... | |
dbus_bool_t | _dbus_md5_final (DBusMD5Context *context, DBusString *results) |
MD5 finalization. More... | |
dbus_bool_t | _dbus_md5_compute (const DBusString *data, DBusString *ascii_output) |
Computes the ASCII hex-encoded md5sum of the given data and appends it to the output string. More... |
Types and functions related to computing MD5 sums.
|
Computes the ASCII hex-encoded md5sum of the given data and appends it to the output string.
Definition at line 468 of file dbus-md5.c. |
|
MD5 finalization. Ends an MD5 message-digest operation, writing the the message digest and zeroing the context. The results are returned as a raw 16-byte digest, not as the ascii-hex-digits string form of the digest.
Definition at line 441 of file dbus-md5.c. |
|
Initializes the MD5 context.
Definition at line 404 of file dbus-md5.c. |
|
Feeds more data into an existing md5sum computation.
Definition at line 417 of file dbus-md5.c. |