(r8096/r2592)
#include "magick.h"
#include "image.h"
Go to the source code of this file.
Classes |
| struct | MessageDigest |
Defines |
| #define | F(x, y, z) (((x) & (y)) | ((~x) & (z))) |
| #define | G(x, y, z) (((x) & (z)) | ((y) & (~z))) |
| #define | H(x, y, z) ((x) ^ (y) ^ (z)) |
| #define | I(x, y, z) ((y) ^ ((x) | (~z))) |
| #define | RotateLeft(x, n) (((x) << (n)) | (((x) & 0xffffffff) >> (32-(n)))) |
Functions |
static void
TransformMessageDigest
UpdateMessageDigest | _Declare ((MessageDigest *, unsigned char *, uint32_t)) |
| void | ColormapSignature (Image *image) |
Define Documentation
| #define F |
( |
|
x, |
|
|
|
y, |
|
|
|
z |
|
) |
| (((x) & (y)) | ((~x) & (z))) |
| #define G |
( |
|
x, |
|
|
|
y, |
|
|
|
z |
|
) |
| (((x) & (z)) | ((y) & (~z))) |
| #define H |
( |
|
x, |
|
|
|
y, |
|
|
|
z |
|
) |
| ((x) ^ (y) ^ (z)) |
| #define I |
( |
|
x, |
|
|
|
y, |
|
|
|
z |
|
) |
| ((y) ^ ((x) | (~z))) |
| #define RotateLeft |
( |
|
x, |
|
|
|
n |
|
) |
| (((x) << (n)) | (((x) & 0xffffffff) >> (32-(n)))) |
Function Documentation
| static void TransformMessageDigest UpdateMessageDigest _Declare |
( |
(MessageDigest *, unsigned char *, uint32_t) |
| ) |
|