You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
505 B
18 lines
505 B
// This is the main DLL file.
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "WhiteRabbit.UnmanagedBridge.h"
|
|
#include "md5.h"
|
|
|
|
void WhiteRabbitUnmanagedBridge::MD5Unmanaged::ComputeMD5(unsigned int * input, unsigned int* output)
|
|
{
|
|
md5(input + 0 * 8, output + 0);
|
|
md5(input + 1 * 8, output + 1);
|
|
md5(input + 2 * 8, output + 2);
|
|
md5(input + 3 * 8, output + 3);
|
|
md5(input + 4 * 8, output + 4);
|
|
md5(input + 5 * 8, output + 5);
|
|
md5(input + 6 * 8, output + 6);
|
|
md5(input + 7 * 8, output + 7);
|
|
}
|
|
|