I probably should have just put all this in one question, sorry for that :(
Second error
Ok, this should be the end of errors (hopefully):
private static string getCRC(string input, bool appendDate)
{
string toEnc = string.Format("{0}{1}", input, appendDate == true ? string.Format("{0:yyyyMMdd}", System.DateTime.Now) : "");
System.IO.MemoryStream mStream = new System.IO.MemoryStream(System.Text.ASCIIEncoding.ASCII.GetBytes(toEnc), false);
CRC32 oCRC = new CRC32();
return oCRC.GetCrc32(((System.IO.Stream)mStream)).ToString();
}
Error is on the return line:
Compiler Error Message: CS1502: The best overloaded method match for 'CRC.CRC32.GetCrc32(ref System.IO.Stream)' has some invalid arguments
Here is the function it is referring to:
public UInt32 GetCrc32(ref System.IO.Stream stream)
{
//Dim crc32Result As Integer = &HFFFFFFFF
UInt32 crc32Result = UInt32.MaxValue;
try
{
byte[] buffer = new byte[BUFFER_SIZE];
int readSize = BUFFER_SIZE;
int count = stream.Read(buffer, 0, readSize);
int i;
UInt32 iLookup;
//Dim tot As Integer = 0
while ((count > 0))
{
for (i = 0; i <= count - 1; i++)
{
iLookup = (crc32Result & 0xff) ^ buffer[i];
//crc32Result = ((crc32Result And &HFFFFFF00) \ &H100) And &HFFFFFF ' nasty shr 8 with vb :/
crc32Result = ((UInt32)((crc32Result & 4294967040L) / 256) & UInt32.MaxValue);
// nasty shr 8 with vb :/
crc32Result = crc32Result ^ crc32Table[iLookup];
}
count = stream.Read(buffer, 0, readSize);
}
}
catch (Exception ex)
{
HttpContext.Current.Response.Output.Write(string.Format("{0}{1}{2}", ex.Message, Environment.NewLine, ex.StackTrace));
System.Diagnostics.Debugger.Break();
}
return (~crc32Result);
}
As you can see I tried to cast the memorystream as a stream, but I don't think it liked that too much.
First error
If you have not seen my last couple of questions, I have a CRC function written in VB.NET. I used an online converter to convert it over to C#. Here is the original VB code:
Public Sub New()
Dim dwPolynomial As UInt32 = 3988292384
Dim i As Integer, j As Integer
ReDim crc32Table(256)
Dim dwCrc As UInt32
For i = 0 To 255
dwCrc = i
For j = 8 To 1 Step -1
If (dwCrc And 1) Then
dwCrc = ((dwCrc And &HFFFFFFFE) \ 2&) And &H7FFFFFFF
dwCrc = dwCrc Xor dwPolynomial
Else
dwCrc = ((dwCrc And &HFFFFFFFE) \ 2&) And &H7FFFFFFF
End If
Next j
crc32Table(i) = dwCrc
Next i
End Sub
Here is my converted code. I fixed a few of the errors I was having but there are few more that I cannot figure out:
public CRC32()
{
UInt32 dwPolynomial = ((UInt32)3988292384L);
int i;
int j;
UInt32[] crc32Table;
crc32Table = new UInt32[256];
UInt32 dwCrc;
for (i = 0; i <= 255; i++)
{
dwCrc = ((UInt32)i);
for (j = 8; j >= 1; j -= 1)
{
if ((dwCrc & 1))
{
dwCrc = ((dwCrc & 0xfffffffe) / 2L) & 0x7fffffff;
dwCrc = dwCrc ^ dwPolynomial;
}
else
{
dwCrc = ((dwCrc & 0xfffffffe) / 2L) & 0x7fffffff;
}
}
crc32Table[i] = dwCrc;
}
}
The first error is on this line:
Compiler Error Message: CS0030: Cannot convert type 'uint' to 'bool'
if ((dwCrc & 1))
Should I be comparing these two values with a different operator? I am not too sure about why the &
operator is there to be honest.
Thanks SO.