NumberOfPhrases moved out to UnmanagedBridge

master
Inga 🏳‍🌈 7 years ago
parent 54c32d07da
commit 0090bce443
  1. 1
      dotnet/WhiteRabbit.UnmanagedBridge/WhiteRabbit.UnmanagedBridge.h
  2. 2
      dotnet/WhiteRabbit/Constants.cs

@ -9,6 +9,7 @@ namespace WhiteRabbitUnmanagedBridge {
public ref class MD5Unmanaged
{
public:
literal int PhrasesPerSet = 16;
static void ComputeMD5(unsigned int* input, unsigned int* output);
};
}

@ -2,6 +2,6 @@
{
internal class Constants
{
public const int PhrasesPerSet = 16;
public const int PhrasesPerSet = WhiteRabbitUnmanagedBridge.MD5Unmanaged.PhrasesPerSet;
}
}

Loading…
Cancel
Save