Valhalla Legends Archive

Programming => Battle.net Bot Development => Topic started by: Ozzapoo on April 15, 2009, 05:27 AM

Title: Warden Implementation in VB.Net?
Post by: Ozzapoo on April 15, 2009, 05:27 AM
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.
Title: Re: Warden Implementation in VB.Net?
Post by: Yegg on April 15, 2009, 05:43 AM
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)?
Title: Re: Warden Implementation in VB.Net?
Post by: Ozzapoo on April 16, 2009, 01:40 AM
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.
Title: Re: Warden Implementation in VB.Net?
Post by: Ribose on April 20, 2009, 01:51 PM
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).