Git Product home page Git Product logo

Comments (5)

thomasbalsloev avatar thomasbalsloev commented on July 2, 2024 1

I'm rather confused about this part of the guide.

First of all I can't get it to work with any of the variations above.
I'm now using attr_encryped version 3.0.1 and devise-two-factor 2.2.1, but am coming from attr_encrypted 1.4.0/devise-two-factor 2.1.0.
It worked with:

attr_encrypted :otp_secret, :key  => Rails.application.secrets.p9_2fa_encryption_key,
                              :insecure_mode => true,
                              :mode      => :single_iv_and_salt,
                              :algorithm => 'aes-256-cbc'   

Besides, have you any guidance on how to migrate encrypted data using attr_encrypted 1.4.0/devise-two-factor 2.1.0 to the latest versions?
Using the guide above seems to postpone the problem rather than solving it...
Any pointers?

Best regards,
Thomas Balsløv.

from devise-two-factor.

connorshea avatar connorshea commented on July 2, 2024

The guide should be changed to:

attr_encrypted :otp_secret,
  :key       => ENV['DEVISE_TWO_FACTOR_ENCRYPTION_KEY'],
  :mode      => :per_attribute_iv_and_salt,
  :algorithm => 'aes-256-cbc'

devise :two_factor_authenticatable,
  :otp_secret_encryption_key => ENV['DEVISE_TWO_FACTOR_ENCRYPTION_KEY']

I can open a PR for this if you'd like. Will the 3.0.0 release will be coming on RubyGems this week?

from devise-two-factor.

connorshea avatar connorshea commented on July 2, 2024

@P9GIT you'd have to take the application offline to decrypt the encrypted information, then re-encrypt it using the new encryption algorithm that attr_encrypted defaults to (aes-128-gcm) as well as the new mode (and a new encryption key if yours wasn't long enough before). aes-256-cbc isn't insecure, so you can get away with using it for probably a pretty long time, the problem is that if you want to switch mode or key you'll have to re-encrypt everything anyway, so you may as well do it all at the same time. This will eventually block you from upgrading to attr_encrypted 4.0 if/when it comes out if you don't do it now.

As for why my suggestions didn't work, I'm guessing you didn't use a key that was of sufficient length, so you have to use insecure_mode or attr_encrypted won't be happy. In my case I had a key that was long enough.

from devise-two-factor.

thomasbalsloev avatar thomasbalsloev commented on July 2, 2024

Hi! @connorshea
Thanks a lot for your reply, that helps a lot!

from devise-two-factor.

connorshea avatar connorshea commented on July 2, 2024

@P9GIT no problem, I've been researching this stuff for GitLab anyway, so I have lots of information hoarded :)

from devise-two-factor.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.