0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Rails】password_digestを生成する方法

Posted at

password_digestについて

Railsでパスワードを保存する際にpassword_digestを使用することが多いと思います。Rails のモデル(フォーム)でパスワードを暗号化して保存する方法にある通り、パスワードを設定するときは、モデルを通してパスワードを設定すればpassword_digestを生成してくれる仕組みになっています。

やりたいこと

新規にユーザを作成するときはよいのですが、パスワードを更新するときに一度ユーザを取得した後に更新と言う手順が、モデルを通すと必要になります。これをユーザを取得せずにupdateだけ行いたい場合、password_digestを別途取得する必要があります。今回はその取得方法を紹介します。

対応方法

How to update user password using password_digest and form in Railsにある通り、BCryptを使用して直でpassword_digestの値を生成する方法が挙げられます。BCryptの詳細につきましてはこちらを参照ください。

サンプルソース

sample.rb
require 'bcrypt'

class Sample
  include BCrypt

  # password_digestの取得
  def self.get_password_digest(password)
    Password.create(password)
  end
end
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?