Method to Decrypt passwords in C++
By Tushar Takshak
This code takes a string input by a user and decrypts it into its actual corresponding password in C++.
- This Reverse Engineering project takes input from users the encrypted password and decodes two types of passwords numerical and string types correspondingly.
- Numerical passwords include passwords in form of numbers for example (213123, 1231245125, 123125124, etc.).
- And the String type will include strings like ("/,.],.']/", "asdasd.asd.asd./'][", etc)
Following are the snapshots of these two types of passwords decrypted:
Numerical password:-

String password:-

Comments