Zak
Posting Freak
- Mar 12, 2011
- 848
- 453
- Thread starter
- #81
Yeah i suck at this shit. I did only use paint haha.Ew, I think you should use the uberHotel-type logo. Remember the logo that came with uberCMS orginally? Yea, that one.
Would look better, that one looks... fugly IMHO.
Anyway updates on Crypto:
Code:
/*
* Credits To LitteJ for coding the Class Libary
* Credits To Zak For Setting It Up
* Bye Bye New Crypto.
* 2011 ~ LittleJ
* 2011 ~ RevEmu
*/
namespace RevEmu.Habbo_Encoding
{
public static class Encoding
{
#region Encode Int32,Int16
public static void cypherInt(int v)
{
HabboEncoding.HabboEncoding.cypherInt(v);
}
public static void cypherShort(int v)
{
HabboEncoding.HabboEncoding.cypherShort(v);
}
#endregion
#region Decode Int32,Int16
public static void decypherInt(string v)
{
HabboEncoding.HabboEncoding.decypherInt(v);
}
public static void decypherShort(string v)
{
HabboEncoding.HabboEncoding.decypherShort(v);
}
#endregion
#region Encoding Etc
public static void Init(string publicKey, string privateKey)
{
HabboEncoding.HabboEncoding.init(publicKey, privateKey);
}
#endregion
#region Crypto Utilities
public static void PrepareCryptoSystem()
{
HabboEncoding.CryptoUtils.PrepareCryptoSystem();
}
#endregion
#region LJ282 Setup Crypto
public static void SetUpCrypto(string cryptoHash)
{
HabboEncoding.LJ382.SetupCyrpto(cryptoHash);
}
#endregion
#region LJ282 Encode String
public static void EncodeString(string str)
{
HabboEncoding.LJ382.EncodeString(str);
}
#endregion
#region LJ282 Decode String
public static void DecodeString(string str)
{
HabboEncoding.LJ382.DecodeString(str);
}
#endregion
}
}
Credits to Alex/Quackster for packet logs!