• Welcome to Valhalla Legends Archive.
 

Warden Implementation in VB.Net?

Started by Ozzapoo, April 15, 2009, 05:27 AM

Previous topic - Next topic

Ozzapoo

Hi. Is there any public implementation for Warden in Vb.net? I'm looking for the crypto and hashing code for VB.Net in particular, because porting it all from java is long and tedious, not to mention .NET doesn't have the '>>>' operator.

Yegg

I don't understand. Looking over the code shown on iago's wiki, it seems pretty simple. Not to mention, the only code using the >>> (unsigned right shift) is the Java code. It shows an implementation in C and Java (and C# it looks like). Why not just look over the example in C instead (which should overall be simpler than the Java example)?

Ozzapoo

#2
I'll just port it all from java then, because I found a working unsigned right shift function, and I find java more understandable that C.

Ribose

I've converted it to C# already and the hardest part is the init and 0x05 calls, not really the cryptography algorithms (since they're already in System.Security.Cryptography anyway).
~Ribose