Hi how can I encrypt and decrypt strings.
And the output of the encrypted string is alphanumeric and doesn’t contain any special characters.Same as this example.
ABQIAAAA5SlC01zPdiQe2c6gr56AAhScFBH9YSIKcAjU8YFSuTREdFBSWYOldpPAPQqWTfiiPcWJL6ddpLw.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Encrypt it first; And then base 64 encode the resulting ciphertext.
The entire purpose of base 64 is to transform non printable data into printable data.
So you will use it like the following:
Plaintext -> Encrypt -> Base64 Endode = Ciphertext
Ciphertext -> Base64 Decode -> Decrypt = Plaintext