Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
1  
That junk is either padding or a string representation of binary data; the latter produces a lot of "junk". Try using base64_encode. – Robert K Jul 20 '12 at 15:14
Grt it works for me . Thanks a lot . How do i make it once again as junk format – Pavunkumar Jul 20 '12 at 15:29
1  
On the left-hand side of the same part of the documentation is a link to 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

closed as not a real question by Andrew Barber Mar 13 at 0:38

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.