Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

C# implementation of asdecr.dll

Joined
Jun 10, 2009
Messages
658
Reaction score
140
Here is the implementation :

Code:
public static class Crypt
 {
        [DllImportAttribute("asdecr.dll", EntryPoint = "decrypt_acl", CallingConvention = CallingConvention.Cdecl)]
        public static extern int decrypt_acl(IntPtr acldata, int size, int header);

        [DllImportAttribute("asdecr.dll", EntryPoint = "encrypt_acl", CallingConvention = CallingConvention.Cdecl)]
        public static extern int encrypt_acl(IntPtr acldata, int size, int header);
 }

This is the working implementation. I request moderator to move this to tutorial section as it can help people coding ZA 562 in dot net. For the C++ code please check http://forum.ragezone.com/f487/release-acl-decrypt-dll-786892/ thread!
 
Last edited:
Back
Top