I have a Java application where I need to protect contents in a text file before it is exported in a jar file. So I encode the file using BlowFish algorithm provided by "javax.crypto.Cipher". And I decrypt it on the fly.
Everything works fine when I am running the application from my workstation. But once I export the application as a jar file and run it. It throws up an error in the part of the code that tries to decrypt the contents of the protected text file. The error is:
javax.crypto.BadPaddingException: Given final block not properly padded
Does export-jar-file-process alter the contents of the included text file in anyway like e.g. it's encoding?