i am implementing AES algorithm in c from aes encryption program
and also we write AES program in java , the problem occur in generation of encrypted data both are different .
input text : 358960040119672
key : mlabs
output :
1. by java(android):”vcpBspcYHtjlMgbQJI3aWg==”
2. by c :”`Äç © õ#«0Z”÷›ý”
why this special char. are shown in c . how to deal with this ??
The Java output has been encoded with the Base64 algorithm after encryption, and the C has not.