プロジェクト

全般

プロフィール

Vote #81433

未完了

Replace use of Digest::MD5 / Digest::SHA1 with ActiveSupport::Digest

Admin Redmine さんが約2年前に追加.

ステータス:
New
優先度:
通常
担当者:
-
カテゴリ:
-
対象バージョン:
-
開始日:
2022/05/09
期日:
進捗率:

0%

予定工数:
category_id:
0
version_id:
0
issue_org_id:
35217
author_id:
40856
assigned_to_id:
0
comments:
1
status_id:
1
tracker_id:
3
plus1:
0
affected_version:
closed_on:
affected_version_id:
ステータス-->[New]

説明

Rails introduced @ActiveSupport::Digest@ to allow central configuration of the actual digest implementation that is used throughout Rails. This is helpful in environments where certain digest implementations (most notably, MD5) are not available, i.e. to be "FIPS":https://www.nist.gov/itl/fips-general-information compliant.

The attached patch replaces all uses of @Digest::SHA1@ and @Digest::MD5@ with @ActiveSupport::Digest@. Without further configuration, this will result in @Digest::SHA1@ being used in all these instances since that's the current Rails default. This can be changed by users via the "config.active_support.hash_digest_class setting":https://github.com/rails/rails/pull/40213 , i.e.:

Rails.application.config.active_support.hash_digest_class = OpenSSL::Digest::SHA256

journals

thanks for working on this!

however, the OpenID change isn't safe. The SHA1 algorithm is hardcoded here and your change will break it.
https://github.com/redmine/redmine/blob/49e323ae7af2998fc2785319643a9ac5bc93c425/lib/plugins/open_id_authentication/test/mem_cache_store_test.rb#L126

https://github.com/openid/ruby-openid do support SHA256, maybe add an option to choose it? It has to be a separate option, it can't depend on Rails.application.config.active_support.hash_digest_class

the second missing part is gravatars https://github.com/redmine/redmine/blob/master/lib/plugins/gravatar/lib/gravatar.rb#L68
as discussed in https://www.redmine.org/boards/2/topics/65253 I don't think there's a way to support this feature without MD5, so if the digest isn't available, the feature has to be disabled.
--------------------------------------------------------------------------------

表示するデータがありません

他の形式にエクスポート: Atom PDF

いいね!0