Salve ospite, se leggi questo messaggio vuol dire che non sei registrato, cosa aspetti ? Premi qui per registrarti La registrazione è completamente gratuita e ti permetterà di usufruire di tutte le funzionalità del nostro forum. Buona navigazione.


Vendo, Compro, Scambio NosTale! Riapre il Black Market, concludi i tuoi scambi NosTale gratuitamente! Più info  -   Accedi alla sezione
Download file Server : File Retro Server NosTale
Visita la nuova sezione di BorderGame dedicata a Blade & Soul! Sezione Blade and Soul

 
Valutazione discussione:
  • 10 voti - 2.5 media
  • 1
  • 2
  • 3
  • 4
  • 5
Encrypt/Decrypt Game Packet .Net
29-09-2012 04:14 PM
Messaggio: #1
Encrypt/Decrypt Game Packet .Net
DeStRo
*
Utente Storico

Utente

Messaggi : 251

Registrato dal : Dec 2010

Reputazione : 20

Stato : Offline


Premi :



Per chi volesse le Encrypt/Decrypt dei packet, sto procendo a convertirle da c++ a vb.net, ma il lavoro è abbastanza complesso. Chiunque se ne intenda di .Net (soprattutto VB.Net) sarei felice se volesse partecipare al progetto.

Per adesso ho convertito:
-Encrypt/Decrypt Login Server;
-Get password;
-Decrypt Session ID;
-Decrypt Game Packet(sono riuscito quasi a completarla ed è per questo che ho bisogno del vostro aiuto)
Torna al primo messaggio
Email Cerca Rispondi
29-09-2012 04:19 PM
Messaggio: #2
RE: Encrypt/Decrypt Game Packet .Net
Ð3V!L
Bannati
Utente Saggio
Utente Storico

Banned

Messaggi : 1,416

Registrato dal : Apr 2012


Stato : Offline


Premi :



Io potrei aiutarti a convertirlo in c# al limite..
se ti interessa inviami un pm ^^
Torna al primo messaggio
Email Cerca Rispondi
29-09-2012 04:38 PM
Messaggio: #3
RE: Encrypt/Decrypt Game Packet .Net
ernilos
*

Novizio

Messaggi : 14

Registrato dal : Sep 2012

Reputazione : 0

Stato : Offline


Premi :



I have Decrypt Pssw in vb.net
Codice:
Function Decrypt(ByVal pswd As String) As String

        Dim Num As Integer = pswd.Length
        Dim EsPar As Boolean
        EsPar = IIf(Num Mod 2, False, True)
        Try
            If EsPar = True Then
                Dim nueva = pswd.Remove(0, 3)
                Dim Caracteres As New ArrayList
                Caracteres.AddRange(nueva.ToCharArray)
                Dim OffSetChar = ""
                For i = 0 To nueva.Length - 1 Step 2
                    OffSetChar &= Caracteres(i)
                Next
                Dim toHex As New ArrayList
                toHex.AddRange(OffSetChar.ToCharArray)
                Dim StrConverted = ""
                For S = 0 To OffSetChar.Length - 1 Step 2
                    StrConverted &= System.Convert.ToChar(System.Convert.ToUInt32(toHex(S) & toHex(S + 1), 16)).ToString()
                Next
                Return StrConverted
            Else
                Dim nueva = pswd.Remove(0, 4)
                Dim Caracteres As New ArrayList

                Caracteres.AddRange(nueva.ToCharArray)
                Dim OffSetChar = ""
                For i = 0 To nueva.Length - 1 Step 2
                    OffSetChar &= Caracteres(i)
                Next
  
                Dim toHex As New ArrayList
                toHex.AddRange(OffSetChar.ToCharArray)
                Dim StrConverted = ""
            
                For S = 0 To OffSetChar.Length - 1 Step 2
                    StrConverted &= System.Convert.ToChar(System.Convert.ToUInt32(toHex(S) & toHex(S + 1), 16)).ToString()
                Next

                Return StrConverted
            End If
        Catch ex As Exception
                Return "Error"
        End Try
    End Function
^^
Torna al primo messaggio
Email Cerca Rispondi
30-09-2012 01:12 PM
Messaggio: #4
RE: Encrypt/Decrypt Game Packet .Net
Ð3V!L
Bannati
Utente Saggio
Utente Storico

Banned

Messaggi : 1,416

Registrato dal : Apr 2012


Stato : Offline


Premi :



he have:

-Encrypt/Decrypt Login Server;
-Get password;
-Decrypt Session ID;

he need:

- Gameserver Encrypt/Decrypt
Torna al primo messaggio
Email Cerca Rispondi

PubblicitàLa tua pubblicità qui, clicca per informazioni e per le offerte!

Stanno visualizzando la discussione : 1 Ospite(i)

  • Versione stampabile
  • Invia ad un amico
  • Sottoscrivi questa discussione