I am encrypting the string Crypt RSA PHP( phpseclib ) modules. I am able do the encryption and decryption successfully. But the encryption string comes with junk characters, whether can I get the encrypted string as normal text by setting any option.
Afterward I should be able make it as junk string , So that i would be doing the decryption
without any problem
Please suggest me any idea.
Thanks
base64_decode. It will then be in binary format. The "junk" is from taking binary and putting it into ASCII—which isn't a good idea, anyway. – Robert K Jul 20 '12 at 16:00