I need to do the triple DES encryption and decryption in ruby. Whether I can use openpgp gem
Or any other dedicated gem is there for doing the triple DES encryption /decryption.
Please suggest me .
Thanks
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.
You’re probably thinking of openssl, not openpgp. Here’s a documentation of openssl encryption functions in ruby. You can also use the much simpler gibberish module. You need Ruby compiled with openssl support either way; either compile it yourself or find one available for download.