Hi I am saving password with hashed_password and salt in table. Now I need to send those passwords via SMS can it be possible.Kindly give me some suggestion plz . Thanks in advance Cheers -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/c035582a-7895-4963-8e4c-e3b5cdf3145c%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
You cannot un-hash those passwords. So no, it is not possible. -- Dheeraj Kumar On Wednesday 24 July 2013 at 8:13 PM, honey ruby wrote:> Hi I am saving password with hashed_password and salt in table. Now I need to send those passwords via SMS can it be possible.Kindly give me some suggestion plz . > > > > > Thanks in advance > Cheers > > -- > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org (mailto:rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org). > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org (mailto:rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org). > To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/c035582a-7895-4963-8e4c-e3b5cdf3145c%40googlegroups.com. > For more options, visit https://groups.google.com/groups/opt_out. > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/E61EDA1A69EA4D99A2FBE602297D4DA0%40gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
THANKS DHEERAJ, IS IT IMPOSSIBLE FOR SURE On Wed, Jul 24, 2013 at 8:30 PM, Dheeraj Kumar <a.dheeraj.kumar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote:> You cannot un-hash those passwords. So no, it is not possible. > > -- > Dheeraj Kumar > > On Wednesday 24 July 2013 at 8:13 PM, honey ruby wrote: > > Hi I am saving password with hashed_password and salt in table. Now I need > to send those passwords via SMS can it be possible.Kindly give me some > suggestion plz . > > > > > Thanks in advance > Cheers > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To view this discussion on the web visit > https://groups.google.com/d/msgid/rubyonrails-talk/c035582a-7895-4963-8e4c-e3b5cdf3145c%40googlegroups.com > . > For more options, visit https://groups.google.com/groups/opt_out. > > > > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To view this discussion on the web visit > https://groups.google.com/d/msgid/rubyonrails-talk/E61EDA1A69EA4D99A2FBE602297D4DA0%40gmail.com > . > > For more options, visit https://groups.google.com/groups/opt_out. > > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAOKUzCm9DGRAJCev8YjjcG7wznMuNVYPUyvAfRKOQQUiGwPDFg%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
Are you building this for a "Forgot My Password" feature? You could look into using Devise and password recovery is built right in. If you still want to roll your own I''d recommend, at a minimum, you instead reset their password to a random password, email them the random password and let them reset it. That''s still not very secure though. Sending any password in plain text defeats the purpose of hashing and storing your passwords. There''s several better solutions like having user answer security questions, sending them a link to a temporary obfuscated page that allows them to reset their password, etc. If you''re rolling your own right now though I definitely recommend looking into the Devise gem as it will do all this for you. -- Nate West <http://about.me/natewest> -- On Wed, Jul 24, 2013 at 10:00 AM, Dheeraj Kumar <a.dheeraj.kumar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote:> You cannot un-hash those passwords. So no, it is not possible. > > -- > Dheeraj Kumar > > On Wednesday 24 July 2013 at 8:13 PM, honey ruby wrote: > > Hi I am saving password with hashed_password and salt in table. Now I need > to send those passwords via SMS can it be possible.Kindly give me some > suggestion plz . > > > > > Thanks in advance > Cheers > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To view this discussion on the web visit > https://groups.google.com/d/msgid/rubyonrails-talk/c035582a-7895-4963-8e4c-e3b5cdf3145c%40googlegroups.com > . > For more options, visit https://groups.google.com/groups/opt_out. > > > > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To view this discussion on the web visit > https://groups.google.com/d/msgid/rubyonrails-talk/E61EDA1A69EA4D99A2FBE602297D4DA0%40gmail.com > . > > For more options, visit https://groups.google.com/groups/opt_out. > > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAPkSWEEPCMH0HT%3DgGfwdmVmEsED9DVwaivhJK0CceJZf%3DbTjyQ%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
ok On Wed, Jul 24, 2013 at 8:44 PM, Dheeraj Kumar <a.dheeraj.kumar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote:> Even when you completely capitalize your question, yes. > > -- > Dheeraj Kumar > > On Wednesday 24 July 2013 at 8:35 PM, honey ruby wrote: > > THANKS DHEERAJ, IS IT IMPOSSIBLE FOR SURE > > > On Wed, Jul 24, 2013 at 8:30 PM, Dheeraj Kumar <a.dheeraj.kumar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote: > > You cannot un-hash those passwords. So no, it is not possible. > > -- > Dheeraj Kumar > > On Wednesday 24 July 2013 at 8:13 PM, honey ruby wrote: > > Hi I am saving password with hashed_password and salt in table. Now I need > to send those passwords via SMS can it be possible.Kindly give me some > suggestion plz . > > > > > Thanks in advance > Cheers > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To view this discussion on the web visit > https://groups.google.com/d/msgid/rubyonrails-talk/c035582a-7895-4963-8e4c-e3b5cdf3145c%40googlegroups.com > . > For more options, visit https://groups.google.com/groups/opt_out. > > > > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To view this discussion on the web visit > https://groups.google.com/d/msgid/rubyonrails-talk/E61EDA1A69EA4D99A2FBE602297D4DA0%40gmail.com > . > > For more options, visit https://groups.google.com/groups/opt_out. > > > > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To view this discussion on the web visit > https://groups.google.com/d/msgid/rubyonrails-talk/CAOKUzCm9DGRAJCev8YjjcG7wznMuNVYPUyvAfRKOQQUiGwPDFg%40mail.gmail.com > . > > For more options, visit https://groups.google.com/groups/opt_out. > > > > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To view this discussion on the web visit > https://groups.google.com/d/msgid/rubyonrails-talk/B63E5CA9FE1648CF92FE64B7DDEE32CA%40gmail.com > . > > For more options, visit https://groups.google.com/groups/opt_out. > > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAOKUzCnRrD2OXwaM%3DAVFNDXRkHCW3RMQ%3DUMv8dP_CLV0yx9fJg%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
Sending plaintext passwords is bad. Even across SMS. Generate a OTP token if you need to send them something. ~Johnneylee On Jul 24, 2013 11:25 AM, "honey ruby" <emailtohoneyruby-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> ok > > > On Wed, Jul 24, 2013 at 8:44 PM, Dheeraj Kumar <a.dheeraj.kumar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote: > >> Even when you completely capitalize your question, yes. >> >> -- >> Dheeraj Kumar >> >> On Wednesday 24 July 2013 at 8:35 PM, honey ruby wrote: >> >> THANKS DHEERAJ, IS IT IMPOSSIBLE FOR SURE >> >> >> On Wed, Jul 24, 2013 at 8:30 PM, Dheeraj Kumar <a.dheeraj.kumar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org >> > wrote: >> >> You cannot un-hash those passwords. So no, it is not possible. >> >> -- >> Dheeraj Kumar >> >> On Wednesday 24 July 2013 at 8:13 PM, honey ruby wrote: >> >> Hi I am saving password with hashed_password and salt in table. Now I >> need to send those passwords via SMS can it be possible.Kindly give me some >> suggestion plz . >> >> >> >> >> Thanks in advance >> Cheers >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/rubyonrails-talk/c035582a-7895-4963-8e4c-e3b5cdf3145c%40googlegroups.com >> . >> For more options, visit https://groups.google.com/groups/opt_out. >> >> >> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/rubyonrails-talk/E61EDA1A69EA4D99A2FBE602297D4DA0%40gmail.com >> . >> >> For more options, visit https://groups.google.com/groups/opt_out. >> >> >> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/rubyonrails-talk/CAOKUzCm9DGRAJCev8YjjcG7wznMuNVYPUyvAfRKOQQUiGwPDFg%40mail.gmail.com >> . >> >> For more options, visit https://groups.google.com/groups/opt_out. >> >> >> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/rubyonrails-talk/B63E5CA9FE1648CF92FE64B7DDEE32CA%40gmail.com >> . >> >> For more options, visit https://groups.google.com/groups/opt_out. >> >> >> > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To view this discussion on the web visit > https://groups.google.com/d/msgid/rubyonrails-talk/CAOKUzCnRrD2OXwaM%3DAVFNDXRkHCW3RMQ%3DUMv8dP_CLV0yx9fJg%40mail.gmail.com > . > For more options, visit https://groups.google.com/groups/opt_out. > > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CANuxHDOyZRNeb_fwvzcySkkTYKhMRP3qm8HGkK7ne37rER4uxw%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
Hi Johnneylee Rollins, I am not sending plain text kindly read above mail for what exactly I need. On Wed, Jul 24, 2013 at 10:18 PM, Johnneylee Rollins < johnneylee.rollins-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Sending plaintext passwords is bad. Even across SMS. Generate a OTP token > if you need to send them something. > > ~Johnneylee > On Jul 24, 2013 11:25 AM, "honey ruby" <emailtohoneyruby-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > >> ok >> >> >> On Wed, Jul 24, 2013 at 8:44 PM, Dheeraj Kumar <a.dheeraj.kumar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org >> > wrote: >> >>> Even when you completely capitalize your question, yes. >>> >>> -- >>> Dheeraj Kumar >>> >>> On Wednesday 24 July 2013 at 8:35 PM, honey ruby wrote: >>> >>> THANKS DHEERAJ, IS IT IMPOSSIBLE FOR SURE >>> >>> >>> On Wed, Jul 24, 2013 at 8:30 PM, Dheeraj Kumar < >>> a.dheeraj.kumar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>> >>> You cannot un-hash those passwords. So no, it is not possible. >>> >>> -- >>> Dheeraj Kumar >>> >>> On Wednesday 24 July 2013 at 8:13 PM, honey ruby wrote: >>> >>> Hi I am saving password with hashed_password and salt in table. Now I >>> need to send those passwords via SMS can it be possible.Kindly give me some >>> suggestion plz . >>> >>> >>> >>> >>> Thanks in advance >>> Cheers >>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "Ruby on Rails: Talk" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> To view this discussion on the web visit >>> https://groups.google.com/d/msgid/rubyonrails-talk/c035582a-7895-4963-8e4c-e3b5cdf3145c%40googlegroups.com >>> . >>> For more options, visit https://groups.google.com/groups/opt_out. >>> >>> >>> >>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "Ruby on Rails: Talk" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> To view this discussion on the web visit >>> https://groups.google.com/d/msgid/rubyonrails-talk/E61EDA1A69EA4D99A2FBE602297D4DA0%40gmail.com >>> . >>> >>> For more options, visit https://groups.google.com/groups/opt_out. >>> >>> >>> >>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "Ruby on Rails: Talk" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> To view this discussion on the web visit >>> https://groups.google.com/d/msgid/rubyonrails-talk/CAOKUzCm9DGRAJCev8YjjcG7wznMuNVYPUyvAfRKOQQUiGwPDFg%40mail.gmail.com >>> . >>> >>> For more options, visit https://groups.google.com/groups/opt_out. >>> >>> >>> >>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "Ruby on Rails: Talk" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> To view this discussion on the web visit >>> https://groups.google.com/d/msgid/rubyonrails-talk/B63E5CA9FE1648CF92FE64B7DDEE32CA%40gmail.com >>> . >>> >>> For more options, visit https://groups.google.com/groups/opt_out. >>> >>> >>> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/rubyonrails-talk/CAOKUzCnRrD2OXwaM%3DAVFNDXRkHCW3RMQ%3DUMv8dP_CLV0yx9fJg%40mail.gmail.com >> . >> >> For more options, visit https://groups.google.com/groups/opt_out. >> >> >> > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To view this discussion on the web visit > https://groups.google.com/d/msgid/rubyonrails-talk/CANuxHDOyZRNeb_fwvzcySkkTYKhMRP3qm8HGkK7ne37rER4uxw%40mail.gmail.com > . > > For more options, visit https://groups.google.com/groups/opt_out. > > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAOKUzCnaA3DATpr1zNkGumE4oLRzpDfPuUjr%3DPyL%2B1Y6ZwPqVw%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
How is a hashed password going to help a user? On Jul 24, 2013 1:49 PM, "honey ruby" <emailtohoneyruby-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hi Johnneylee Rollins, > > I am not sending plain text kindly read > above mail for what exactly I need. > > > > On Wed, Jul 24, 2013 at 10:18 PM, Johnneylee Rollins < > johnneylee.rollins-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > >> Sending plaintext passwords is bad. Even across SMS. Generate a OTP token >> if you need to send them something. >> >> ~Johnneylee >> On Jul 24, 2013 11:25 AM, "honey ruby" <emailtohoneyruby-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> >> wrote: >> >>> ok >>> >>> >>> On Wed, Jul 24, 2013 at 8:44 PM, Dheeraj Kumar < >>> a.dheeraj.kumar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>> >>>> Even when you completely capitalize your question, yes. >>>> >>>> -- >>>> Dheeraj Kumar >>>> >>>> On Wednesday 24 July 2013 at 8:35 PM, honey ruby wrote: >>>> >>>> THANKS DHEERAJ, IS IT IMPOSSIBLE FOR SURE >>>> >>>> >>>> On Wed, Jul 24, 2013 at 8:30 PM, Dheeraj Kumar < >>>> a.dheeraj.kumar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>>> >>>> You cannot un-hash those passwords. So no, it is not possible. >>>> >>>> -- >>>> Dheeraj Kumar >>>> >>>> On Wednesday 24 July 2013 at 8:13 PM, honey ruby wrote: >>>> >>>> Hi I am saving password with hashed_password and salt in table. Now I >>>> need to send those passwords via SMS can it be possible.Kindly give me some >>>> suggestion plz . >>>> >>>> >>>> >>>> >>>> Thanks in advance >>>> Cheers >>>> >>>> -- >>>> You received this message because you are subscribed to the Google >>>> Groups "Ruby on Rails: Talk" group. >>>> To unsubscribe from this group and stop receiving emails from it, send >>>> an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>> To view this discussion on the web visit >>>> https://groups.google.com/d/msgid/rubyonrails-talk/c035582a-7895-4963-8e4c-e3b5cdf3145c%40googlegroups.com >>>> . >>>> For more options, visit https://groups.google.com/groups/opt_out. >>>> >>>> >>>> >>>> >>>> -- >>>> You received this message because you are subscribed to the Google >>>> Groups "Ruby on Rails: Talk" group. >>>> To unsubscribe from this group and stop receiving emails from it, send >>>> an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>> To view this discussion on the web visit >>>> https://groups.google.com/d/msgid/rubyonrails-talk/E61EDA1A69EA4D99A2FBE602297D4DA0%40gmail.com >>>> . >>>> >>>> For more options, visit https://groups.google.com/groups/opt_out. >>>> >>>> >>>> >>>> >>>> -- >>>> You received this message because you are subscribed to the Google >>>> Groups "Ruby on Rails: Talk" group. >>>> To unsubscribe from this group and stop receiving emails from it, send >>>> an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>> To view this discussion on the web visit >>>> https://groups.google.com/d/msgid/rubyonrails-talk/CAOKUzCm9DGRAJCev8YjjcG7wznMuNVYPUyvAfRKOQQUiGwPDFg%40mail.gmail.com >>>> . >>>> >>>> For more options, visit https://groups.google.com/groups/opt_out. >>>> >>>> >>>> >>>> >>>> -- >>>> You received this message because you are subscribed to the Google >>>> Groups "Ruby on Rails: Talk" group. >>>> To unsubscribe from this group and stop receiving emails from it, send >>>> an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>> To view this discussion on the web visit >>>> https://groups.google.com/d/msgid/rubyonrails-talk/B63E5CA9FE1648CF92FE64B7DDEE32CA%40gmail.com >>>> . >>>> >>>> For more options, visit https://groups.google.com/groups/opt_out. >>>> >>>> >>>> >>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "Ruby on Rails: Talk" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> To view this discussion on the web visit >>> https://groups.google.com/d/msgid/rubyonrails-talk/CAOKUzCnRrD2OXwaM%3DAVFNDXRkHCW3RMQ%3DUMv8dP_CLV0yx9fJg%40mail.gmail.com >>> . >>> >>> For more options, visit https://groups.google.com/groups/opt_out. >>> >>> >>> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/rubyonrails-talk/CANuxHDOyZRNeb_fwvzcySkkTYKhMRP3qm8HGkK7ne37rER4uxw%40mail.gmail.com >> . >> >> For more options, visit https://groups.google.com/groups/opt_out. >> >> >> > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To view this discussion on the web visit > https://groups.google.com/d/msgid/rubyonrails-talk/CAOKUzCnaA3DATpr1zNkGumE4oLRzpDfPuUjr%3DPyL%2B1Y6ZwPqVw%40mail.gmail.com > . > For more options, visit https://groups.google.com/groups/opt_out. > > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CANuxHDPRuD_PHszKfHWuzCs40fC04w07Go6p_P11MmZEX9TeYw%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
On Jul 24, 2013, at 11:49 AM, honey ruby <emailtohoneyruby-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hi Johnneylee Rollins, > > I am not sending plain text kindly read above mail for what exactly I need.You said you wanted to send passwords. You did not say you wanted to send hashed_password. You''ll get better results if you take the care to be precise in what you ask, rather than wasting everyone''s time with ambiguous questions. So, what do you actually want to do? -- Scott Ribe scott_ribe-ZCQMRMivIIdUL8GK/JU1Wg@public.gmane.org http://www.elevated-dev.com/ (303) 722-0567 voice -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/052123B7-1559-46BE-B495-70D06668738A%40elevated-dev.com. For more options, visit https://groups.google.com/groups/opt_out.
Well it wont help the user but it a strong password in rails. you can not retrieve that but you can update it. but you can not send it that is the issue. too strong passwords On Wed, Jul 24, 2013 at 11:20 PM, Johnneylee Rollins < johnneylee.rollins-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> How is a hashed password going to help a user? > On Jul 24, 2013 1:49 PM, "honey ruby" <emailtohoneyruby-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > >> Hi Johnneylee Rollins, >> >> I am not sending plain text kindly read >> above mail for what exactly I need. >> >> >> >> On Wed, Jul 24, 2013 at 10:18 PM, Johnneylee Rollins < >> johnneylee.rollins-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> >>> Sending plaintext passwords is bad. Even across SMS. Generate a OTP >>> token if you need to send them something. >>> >>> ~Johnneylee >>> On Jul 24, 2013 11:25 AM, "honey ruby" <emailtohoneyruby-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> >>> wrote: >>> >>>> ok >>>> >>>> >>>> On Wed, Jul 24, 2013 at 8:44 PM, Dheeraj Kumar < >>>> a.dheeraj.kumar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>>> >>>>> Even when you completely capitalize your question, yes. >>>>> >>>>> -- >>>>> Dheeraj Kumar >>>>> >>>>> On Wednesday 24 July 2013 at 8:35 PM, honey ruby wrote: >>>>> >>>>> THANKS DHEERAJ, IS IT IMPOSSIBLE FOR SURE >>>>> >>>>> >>>>> On Wed, Jul 24, 2013 at 8:30 PM, Dheeraj Kumar < >>>>> a.dheeraj.kumar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>>>> >>>>> You cannot un-hash those passwords. So no, it is not possible. >>>>> >>>>> -- >>>>> Dheeraj Kumar >>>>> >>>>> On Wednesday 24 July 2013 at 8:13 PM, honey ruby wrote: >>>>> >>>>> Hi I am saving password with hashed_password and salt in table. Now I >>>>> need to send those passwords via SMS can it be possible.Kindly give me some >>>>> suggestion plz . >>>>> >>>>> >>>>> >>>>> >>>>> Thanks in advance >>>>> Cheers >>>>> >>>>> -- >>>>> You received this message because you are subscribed to the Google >>>>> Groups "Ruby on Rails: Talk" group. >>>>> To unsubscribe from this group and stop receiving emails from it, send >>>>> an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org >>>>> . >>>>> To view this discussion on the web visit >>>>> https://groups.google.com/d/msgid/rubyonrails-talk/c035582a-7895-4963-8e4c-e3b5cdf3145c%40googlegroups.com >>>>> . >>>>> For more options, visit https://groups.google.com/groups/opt_out. >>>>> >>>>> >>>>> >>>>> >>>>> -- >>>>> You received this message because you are subscribed to the Google >>>>> Groups "Ruby on Rails: Talk" group. >>>>> To unsubscribe from this group and stop receiving emails from it, send >>>>> an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org >>>>> . >>>>> To view this discussion on the web visit >>>>> https://groups.google.com/d/msgid/rubyonrails-talk/E61EDA1A69EA4D99A2FBE602297D4DA0%40gmail.com >>>>> . >>>>> >>>>> For more options, visit https://groups.google.com/groups/opt_out. >>>>> >>>>> >>>>> >>>>> >>>>> -- >>>>> You received this message because you are subscribed to the Google >>>>> Groups "Ruby on Rails: Talk" group. >>>>> To unsubscribe from this group and stop receiving emails from it, send >>>>> an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org >>>>> . >>>>> To view this discussion on the web visit >>>>> https://groups.google.com/d/msgid/rubyonrails-talk/CAOKUzCm9DGRAJCev8YjjcG7wznMuNVYPUyvAfRKOQQUiGwPDFg%40mail.gmail.com >>>>> . >>>>> >>>>> For more options, visit https://groups.google.com/groups/opt_out. >>>>> >>>>> >>>>> >>>>> >>>>> -- >>>>> You received this message because you are subscribed to the Google >>>>> Groups "Ruby on Rails: Talk" group. >>>>> To unsubscribe from this group and stop receiving emails from it, send >>>>> an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org >>>>> . >>>>> To view this discussion on the web visit >>>>> https://groups.google.com/d/msgid/rubyonrails-talk/B63E5CA9FE1648CF92FE64B7DDEE32CA%40gmail.com >>>>> . >>>>> >>>>> For more options, visit https://groups.google.com/groups/opt_out. >>>>> >>>>> >>>>> >>>> >>>> -- >>>> You received this message because you are subscribed to the Google >>>> Groups "Ruby on Rails: Talk" group. >>>> To unsubscribe from this group and stop receiving emails from it, send >>>> an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>> To view this discussion on the web visit >>>> https://groups.google.com/d/msgid/rubyonrails-talk/CAOKUzCnRrD2OXwaM%3DAVFNDXRkHCW3RMQ%3DUMv8dP_CLV0yx9fJg%40mail.gmail.com >>>> . >>>> >>>> For more options, visit https://groups.google.com/groups/opt_out. >>>> >>>> >>>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "Ruby on Rails: Talk" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> To view this discussion on the web visit >>> https://groups.google.com/d/msgid/rubyonrails-talk/CANuxHDOyZRNeb_fwvzcySkkTYKhMRP3qm8HGkK7ne37rER4uxw%40mail.gmail.com >>> . >>> >>> For more options, visit https://groups.google.com/groups/opt_out. >>> >>> >>> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/rubyonrails-talk/CAOKUzCnaA3DATpr1zNkGumE4oLRzpDfPuUjr%3DPyL%2B1Y6ZwPqVw%40mail.gmail.com >> . >> >> For more options, visit https://groups.google.com/groups/opt_out. >> >> >> > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To view this discussion on the web visit > https://groups.google.com/d/msgid/rubyonrails-talk/CANuxHDPRuD_PHszKfHWuzCs40fC04w07Go6p_P11MmZEX9TeYw%40mail.gmail.com > . > > For more options, visit https://groups.google.com/groups/opt_out. > > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAOKUzCmDQOvnquKw2aXEM1zEm-vOp2M_gd%2B%3DAip8B74a_B5a9g%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
I have already mention in my first message it self seem you missed that. I have no intention to waste some one''s time. On Wed, Jul 24, 2013 at 11:53 PM, honey ruby <emailtohoneyruby-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote:> Well it wont help the user but it a strong password in rails. you can not > retrieve that but you can update it. but you can not send it that is the > issue. too strong passwords > > > On Wed, Jul 24, 2013 at 11:20 PM, Johnneylee Rollins < > johnneylee.rollins-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > >> How is a hashed password going to help a user? >> On Jul 24, 2013 1:49 PM, "honey ruby" <emailtohoneyruby-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> >>> Hi Johnneylee Rollins, >>> >>> I am not sending plain text kindly read >>> above mail for what exactly I need. >>> >>> >>> >>> On Wed, Jul 24, 2013 at 10:18 PM, Johnneylee Rollins < >>> johnneylee.rollins-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>> >>>> Sending plaintext passwords is bad. Even across SMS. Generate a OTP >>>> token if you need to send them something. >>>> >>>> ~Johnneylee >>>> On Jul 24, 2013 11:25 AM, "honey ruby" <emailtohoneyruby-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> >>>> wrote: >>>> >>>>> ok >>>>> >>>>> >>>>> On Wed, Jul 24, 2013 at 8:44 PM, Dheeraj Kumar < >>>>> a.dheeraj.kumar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>>>> >>>>>> Even when you completely capitalize your question, yes. >>>>>> >>>>>> -- >>>>>> Dheeraj Kumar >>>>>> >>>>>> On Wednesday 24 July 2013 at 8:35 PM, honey ruby wrote: >>>>>> >>>>>> THANKS DHEERAJ, IS IT IMPOSSIBLE FOR SURE >>>>>> >>>>>> >>>>>> On Wed, Jul 24, 2013 at 8:30 PM, Dheeraj Kumar < >>>>>> a.dheeraj.kumar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>>>>> >>>>>> You cannot un-hash those passwords. So no, it is not possible. >>>>>> >>>>>> -- >>>>>> Dheeraj Kumar >>>>>> >>>>>> On Wednesday 24 July 2013 at 8:13 PM, honey ruby wrote: >>>>>> >>>>>> Hi I am saving password with hashed_password and salt in table. Now I >>>>>> need to send those passwords via SMS can it be possible.Kindly give me some >>>>>> suggestion plz . >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> Thanks in advance >>>>>> Cheers >>>>>> >>>>>> -- >>>>>> You received this message because you are subscribed to the Google >>>>>> Groups "Ruby on Rails: Talk" group. >>>>>> To unsubscribe from this group and stop receiving emails from it, >>>>>> send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>>>> To post to this group, send email to >>>>>> rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>>>> To view this discussion on the web visit >>>>>> https://groups.google.com/d/msgid/rubyonrails-talk/c035582a-7895-4963-8e4c-e3b5cdf3145c%40googlegroups.com >>>>>> . >>>>>> For more options, visit https://groups.google.com/groups/opt_out. >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> -- >>>>>> You received this message because you are subscribed to the Google >>>>>> Groups "Ruby on Rails: Talk" group. >>>>>> To unsubscribe from this group and stop receiving emails from it, >>>>>> send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>>>> To post to this group, send email to >>>>>> rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>>>> To view this discussion on the web visit >>>>>> https://groups.google.com/d/msgid/rubyonrails-talk/E61EDA1A69EA4D99A2FBE602297D4DA0%40gmail.com >>>>>> . >>>>>> >>>>>> For more options, visit https://groups.google.com/groups/opt_out. >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> -- >>>>>> You received this message because you are subscribed to the Google >>>>>> Groups "Ruby on Rails: Talk" group. >>>>>> To unsubscribe from this group and stop receiving emails from it, >>>>>> send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>>>> To post to this group, send email to >>>>>> rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>>>> To view this discussion on the web visit >>>>>> https://groups.google.com/d/msgid/rubyonrails-talk/CAOKUzCm9DGRAJCev8YjjcG7wznMuNVYPUyvAfRKOQQUiGwPDFg%40mail.gmail.com >>>>>> . >>>>>> >>>>>> For more options, visit https://groups.google.com/groups/opt_out. >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> -- >>>>>> You received this message because you are subscribed to the Google >>>>>> Groups "Ruby on Rails: Talk" group. >>>>>> To unsubscribe from this group and stop receiving emails from it, >>>>>> send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>>>> To post to this group, send email to >>>>>> rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>>>> To view this discussion on the web visit >>>>>> https://groups.google.com/d/msgid/rubyonrails-talk/B63E5CA9FE1648CF92FE64B7DDEE32CA%40gmail.com >>>>>> . >>>>>> >>>>>> For more options, visit https://groups.google.com/groups/opt_out. >>>>>> >>>>>> >>>>>> >>>>> >>>>> -- >>>>> You received this message because you are subscribed to the Google >>>>> Groups "Ruby on Rails: Talk" group. >>>>> To unsubscribe from this group and stop receiving emails from it, send >>>>> an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org >>>>> . >>>>> To view this discussion on the web visit >>>>> https://groups.google.com/d/msgid/rubyonrails-talk/CAOKUzCnRrD2OXwaM%3DAVFNDXRkHCW3RMQ%3DUMv8dP_CLV0yx9fJg%40mail.gmail.com >>>>> . >>>>> >>>>> For more options, visit https://groups.google.com/groups/opt_out. >>>>> >>>>> >>>>> >>>> -- >>>> You received this message because you are subscribed to the Google >>>> Groups "Ruby on Rails: Talk" group. >>>> To unsubscribe from this group and stop receiving emails from it, send >>>> an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>> To view this discussion on the web visit >>>> https://groups.google.com/d/msgid/rubyonrails-talk/CANuxHDOyZRNeb_fwvzcySkkTYKhMRP3qm8HGkK7ne37rER4uxw%40mail.gmail.com >>>> . >>>> >>>> For more options, visit https://groups.google.com/groups/opt_out. >>>> >>>> >>>> >>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "Ruby on Rails: Talk" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> To view this discussion on the web visit >>> https://groups.google.com/d/msgid/rubyonrails-talk/CAOKUzCnaA3DATpr1zNkGumE4oLRzpDfPuUjr%3DPyL%2B1Y6ZwPqVw%40mail.gmail.com >>> . >>> >>> For more options, visit https://groups.google.com/groups/opt_out. >>> >>> >>> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/rubyonrails-talk/CANuxHDPRuD_PHszKfHWuzCs40fC04w07Go6p_P11MmZEX9TeYw%40mail.gmail.com >> . >> >> For more options, visit https://groups.google.com/groups/opt_out. >> >> >> > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAOKUzCm8Fwm8y%2B9ON3myF2MpV7gx5HK2XdwNzNC93mWWjKBT2w%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
On Wed, Jul 24, 2013 at 10:43 AM, honey ruby <emailtohoneyruby-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote:> Hi I am saving password with hashed_password and salt in table. Now I need > to send those passwords via SMS can it be possible.Kindly give me some > suggestion plz .This line, in the English language, can be understood as "Now I need those passwords" meaning the passwords before hashing, since you don''t differentiate between the first mention of passwords and the hashed_password result. As a native English speaker, I''m letting you know that this is ambiguous and is what lead me to my understanding. Now to answer all permutations of what you may have meant but don''t seem interested in explaining further. If the password you mention is the hashed password, that won''t do the user any good. If you accept the hashed password when authenticating, then your system is horribly broken. Completely. If the password you mention is the password before it was hashed, then you''re also what is called a plaintext offender. You shouldn''t do this either. If your intent, regardless of your question, is the ability to send the user some kind of token that they can use to recover their account, then that also has some issues you should be aware of. Security and privacy in this regard is highly important. I wouldn''t trust SMS to be ''secure'' in any way. It''s not private. Thusly my suggestion of a one time pass token may work for you. You might need to employ some creativity to arrive at a more secure implementation. If you don''t wish to address our questions, perhaps you can provide a few questions that will help us help you. ~Spaceghost> > > > Thanks in advance > Cheers > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To view this discussion on the web visit > https://groups.google.com/d/msgid/rubyonrails-talk/c035582a-7895-4963-8e4c-e3b5cdf3145c%40googlegroups.com > . > For more options, visit https://groups.google.com/groups/opt_out. > > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CANuxHDNB%2BWRAF05GFycteApS9o%2BcVD6sqpEHS0Ebmj4wmvyGjg%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
> On Wed, Jul 24, 2013 at 10:43 AM, honey ruby <emailtohoneyruby-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > Hi I am saving password with hashed_password and salt in table. Now I need to send those passwords via SMS can it be possible.Kindly give me some suggestion plz .Let me ask this: step back from your proposed solution, i.e. sending something via SMS, and tell us what problem you''re actually trying to solve. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/4CC09BB4-F9B5-4200-9835-03BD960FEEB9%40gmail.com. For more options, visit https://groups.google.com/groups/opt_out.