cookieの暗号化
CookieStoreは、
セッションデータの保管場所を暗号化して安全にするためにencrypted cookie jarを利用
します。これにより、cookieベースのセッションの内容の一貫性と機密性
を同時に保ちます。暗号化鍵は、signed cookieに用いられる検証鍵と同様に、secret_key_base設定値から導出
されます。
暗号鍵とsigned cookieはsecret_key_baseをもとに出される
暗号化された保管場所とはどういうことか?
cookie jarとは何か?
secret_key_baseとは?
secret_key_baseとは?
Your cookies will be encrypted using your application’s secret_key_base
. This goes a step further than signed cookies in that encrypted cookies cannot be altered or read by users. This is the default starting in Rails 4.Configure your session store in an initializer:
Rails.application.config.session_store :cookie_store, key:'_your_app_session'
In the development and test environments your application’s secret_key_base is generated by Rails and stored in a temporary file in
tmp/local_secret.txt
. In all other environments, it is stored encrypted in theconfig/credentials.yml.enc
file.
secret_key_baseを使ってcookieを暗号化しているらしい。
開発、テスト環境ではtmp/local_secret.txtに保管されて、その他の環境ではconfig/credentials.yml.encに暗号化されて保管されてるらしい。
Session CookieStoreの設定方法
Because CookieStore extends Rack::Session::Abstract::Persisted,
many of the options described there can be used to customize the session cookie that is generated
. For example:Rails.application.config.session_store :cookie_store, expire_after: 14.days
would set the session cookie to expire automatically 14 days after creation. Other useful options include :key, :secure, :httponly, and :same_site.
説明されたオプションの多くは生成されたセッションクッキーをカスタマイズするために使用する
ということはイニシャライザでcookieのカスタマイズができるのか
sessionstoreの設定記述場所
Configure your session store in an initializer:
1 初期化コードの置き場所
Railsには初期化コードの置き場所が4箇所あります。
- config/application.rb
- 環境ごとの設定ファイル
- イニシャライザファイル
- アフターイニシャライザファイル
3.5.15 ActionDispatch::Session::CookieStore
セッションをcookieに保存する役割を担います。config.session_storeの値を変更すると別のミドルウェアを使えます。
イニシャライザとは
javascriptで解読できるらしい
Note that changing your secret_key_base will invalidate all existing session. Additionally,
you should take care to make sure you are not relying on the ability to decode signed cookies generated by your app in external applications or JavaScript before changing it
.
外部のアプリケーションやJavaScriptでデコードする機能に依存していないことと書いてあるからできるのか
感想
保管場所を暗号化、cookie jarについて理解することはできなかったがこれから理解できるだろう
またjavascriptについても今後勉強しなければなさそうだ。