From this on how to achieve password based encryption it is clear that i need to save salt, IV and cipher text in order to decrypt it later. From this iv and salt can be stored along with cipher text I am storing the hex value in this format DatatypeConverter.printHexBinary(salt) + DatatypeConverter.printHexBinary(iv) + DatatypeConverter.printHexBinary(ciphertext); Do […]
The post How to store iv, salt and cipher text? appeared first on BlogoSfera.