How to remove padded value in Decrypted Message?
I am using AES Algorithm..
ex: this is the decrypted message..
"abcdefghijklmn "
there is a 2 space in that decrypted message which is equivalent to 0x00 how can I removed that value? during decryption to show the exact message before it was encrypted.
I am using ECB Mode, I know that ECB mode is not secured, but I only want to know how to remove padded value in my decrypted message.