Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8103495
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T23:33:52+00:00 2026-06-05T23:33:52+00:00

In a Rails 3.0 (Ruby 1.9.2) app I’m trying to encrypt some data using

  • 0

In a Rails 3.0 (Ruby 1.9.2) app I’m trying to encrypt some data using something like this:

cipher = OpenSSL::Cipher.new 'aes-256-cbc'
cipher.encrypt
cipher.key = cipher.random_key
cipher.iv = cipher.random_iv

encrypted = cipher.update 'most secret data in the world'
encrypted << cipher.final

That will go into a UTF-8 database. My problem is that

> encrypted.encoding
 => #<Encoding:ASCII-8BIT>

> encrypted.encode 'utf-8'
Encoding::UndefinedConversionError: "\xF7" from ASCII-8BIT to UTF-8

How can I get an UTF-8 encrypted string?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T23:33:53+00:00Added an answer on June 5, 2026 at 11:33 pm

    The solution is to convert the ASCII-8BIT string to Base64 and then encode to UTF-8.

    cipher = OpenSSL::Cipher.new 'aes-256-cbc'
    cipher.encrypt
    cipher.key = cipher.random_key
    cipher.iv = cipher.random_iv
    
    encrypted = cipher.update 'most secret data in the world'
    encrypted << cipher.final
    
    encoded = Base64.encode64(encrypted).encode('utf-8')
    

    Once persisted and retrieved from the database,

    decoded = Base64.decode64 encoded.encode('ascii-8bit')
    

    and finally decrypt it.


    PS: If you’re curious:

    cipher = OpenSSL::Cipher.new 'aes-256-cbc'
    cipher.decrypt
    cipher.key = random_key
    cipher.iv = random_iv
    
    decrypted = cipher.update encoded
    decrypted << cipher.final
    
    > decrypted
     => 'most secret data in the world'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm running a ruby on rails app, and I'm using jQuery to show some
This is more a general question but my particular case involves a ruby/rails app
In my ruby on rails app I am trying to use a Prototype Form.Element.Observer
In a Ruby on Rails app, we have some details which are stored as
I'm writing an Ruby on Rails app using a legacy database. The problem I'm
My Ruby on Rails app is using LivePipe Modals. ( http://livepipe.net/ ) Everything has
I'm building this little app with ruby on rails. In the app, I'm having
In my ruby on rails app, I am trying to build a parser to
I have a Ruby/Rails app, which is standard Rails CRUD, with some jQuery and
Scenario: Ruby on Rails app that returns JSON to an iOS application using json-framework

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.