I would like to use BouncyCastle and decrypt a text using Blowfish/ECB/NoPadding, I can create a Blowfish engine using:
BlowfishEngine engine = new BlowfishEngine();
But after that I'm not sure how to create a cypher to decrypt using ECB and NoPadding. I also tried to use:
WrapperUtilities.GetWrapper("Blowfish/ECB/NoPadding")
But then I can't use cipher.doFinal
like I would do with a Cipher
How can I do it?