Hi everyone,
I’m developing an IntelliJ plugin that needs to securely handle an entitlement key provided as a .jar
or .zip
file. Since it contains sensitive information, I want to ensure it’s not exposed or stored in plain text on disk.
I’ve explored the Password Safe API
, which works well for storing passwords or tokens, but doesn’t seem suitable for larger binary files.
Are there any recommended approaches, best practices, or examples for securely storing such files or encrypting them for local plugin use?
Any guidance would be greatly appreciated!