3DES image encryption

I am doing encryption and decryption of the image using 3DES. After encrypting the image, I can not see the encrypted image. Can someone tell me why this is happening? I use jpeg image for encryption. The whole process was done in Java.

+4
source share
1 answer

After performing Triple DES encryption, the image is no longer read as a JPG file until it is decrypted. In general, the purpose of encryption allows you to transmit this image and ensure its security until it is read by the intended recipient, who has private keys

+1
source

Source: https://habr.com/ru/post/1500655/


All Articles