Exemple #1
0
 /// <summary>
 /// Creates a new instance of <see cref="Cipher"/>
 /// </summary>
 /// <param name="currentGameVersion">The current MapleStory version</param>
 /// <param name="AESKey">AESKey for the current MapleStory version</param>
 public Cipher(UInt16 currentGameVersion, UInt64 AESKey)
 {
     Handshaken = false;
     GameVersion = currentGameVersion;
     Transformer = new FastAES(ExpandKey(AESKey));
 }
Exemple #2
0
 /// <summary>
 /// Creates a new instance of <see cref="Cipher"/>
 /// </summary>
 /// <param name="currentGameVersion">The current MapleStory version</param>
 /// <param name="AESKey">AESKey for the current MapleStory version</param>
 public Cipher(UInt16 currentGameVersion, UInt64 AESKey)
 {
     Handshaken  = false;
     GameVersion = currentGameVersion;
     Transformer = new FastAES(ExpandKey(AESKey));
 }