struct EE::System::MD5::Context

#include <md5.hpp>

struct Context {
    // fields

    Uint32 lo;
    Uint32 hi;
    Uint32 a;
    Uint32 b;
    Uint32 c;
    Uint32 d;
    unsigned char buffer[64];
    Uint32 block[16];
};