This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import javax.crypto.*; | |
| import javax.crypto.spec.*; | |
| import java.security.*; | |
| /** | |
| * Decrypt passwords stored in Oracle SQL Developer. | |
| * This is intended for password recovery. | |
| * | |
| * Passwords are stored in ~/.sqldeveloper/system2.1.1.64.39/o.jdeveloper.db.connection.11.1.1.2.36.55.30/connections.xml | |
| */ |