ci provo...
La Stringa da te postata è una stringa codificata in base 64....
lasciamo perdere ti posto due funzioni che servono a codificare
tali stringhe e a decodificarle....
Codice PHP:
public string EncB64(string strParam)
{
if ((strParam != "") && (strParam != null))
{
string encoded = "";
byte[] ByteArray = System.Text.Encoding.ASCII.GetBytes(strParam);
try
{
encoded = System.Convert.ToBase64String(ByteArray, 0, ByteArray.Length);
}
catch (System.ArgumentNullException)
{
return null;
}
return encoded;
} // if ((strParam != "") && (strParam != null))
return strParam;
} // public string EncB64(string strParam)
public string DecB64(string strParam)
{
if ((strParam != "") && (strParam != null))
{
string decoded = "";
byte[] ByteArray;
try
{
ByteArray = System.Convert.FromBase64String(strParam);
}
catch (System.ArgumentNullException)
{
return null;
}
catch (System.FormatException)
{
return ""; //Base 64 string length is not 4 or is not an even multiple of 4.
}
decoded = System.Text.Encoding.ASCII.GetString(ByteArray);
return decoded;
} // if ((strParam != "") && (strParam != null))
return strParam;
} // public string DecB64(string strParam)
Spero che leggendo il codice tu capisca qualcosa di più....