You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be possible to create users from data that exists in an internal system? In a company application, I have a list of users with usernames and passwords. I am not allowed to transfer the clear text passwords to the machine where the Rails app with authentication-zero is.
So my idea is to create the users table on the intranet with all the encrypted secrets and transfer that data to the web application.
I guess I would have to set up a second Rails application on the intranet that creates all the users, by using the same secret base key in order for the Web application to be able to decrypt the secrets like password_digest, otp_secret, and webauthn_id? And then I would need a way to bulk create the users from the external data.
I am wondering what would be needed to make sure authentication-zero can use the users table that was created in a different rails app. Only the same secret key base? Anything else?
The text was updated successfully, but these errors were encountered:
Would it be possible to create users from data that exists in an internal system? In a company application, I have a list of users with usernames and passwords. I am not allowed to transfer the clear text passwords to the machine where the Rails app with authentication-zero is.
So my idea is to create the users table on the intranet with all the encrypted secrets and transfer that data to the web application.
I guess I would have to set up a second Rails application on the intranet that creates all the users, by using the same secret base key in order for the Web application to be able to decrypt the secrets like password_digest, otp_secret, and webauthn_id? And then I would need a way to bulk create the users from the external data.
I am wondering what would be needed to make sure authentication-zero can use the users table that was created in a different rails app. Only the same secret key base? Anything else?
The text was updated successfully, but these errors were encountered: