Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cryp in XML

Status
Not open for further replies.

dennismdk

Programmer
Feb 16, 2006
6
DK
I have a Windows Application which create a .XML with my user-datas. When I type "test" as password, I found this in the .XML-datafile:
<Password>iyzz</Password>

Can anybody tell me about this cryp, and how I can make it i PHP?

There must be a function in PHP which with "test" as input returns iyzz.
 
The encryption will use a key to encrypt the data. Without knowing the key and the encryption algorithm, "iyzz" is meaningless.

Jon

"I don't regret this, but I both rue and lament it.
 
There must be a function in PHP which with "test" as input returns iyzz.
Not necessarily.
;-)

In order to produce the same encrypted value for the same input value, you need to know the algorithm, the key, and possibly the salt. Try contacting the original developers who gave you the XML file.

Chip H.


____________________________________________________________________
If you want to get the best response to a question, please read FAQ222-2244 first
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top