種類
- 定数 (60)
- インスタンスメソッド (24)
ライブラリ
-
rubygems
/ security (84)
クラス
モジュール
-
Gem
:: Security (60)
キーワード
- AlmostNoSecurity (12)
- HighSecurity (12)
- LowSecurity (12)
- MediumSecurity (12)
- NoSecurity (12)
-
only
_ trusted= (12)
検索結果
先頭5件
-
Gem
:: Security :: Policy # only _ trusted -> bool (18101.0) -
この値が真である場合は、検証済みの Gem のみインストールします。
この値が真である場合は、検証済みの Gem のみインストールします。 -
Gem
:: Security :: Policy # only _ trusted=(flag) (6101.0) -
検証済みの Gem のみインストールするかどうかを設定します。
検証済みの Gem のみインストールするかどうかを設定します。
@param flag 真、または偽を指定します。 -
Gem
:: Security :: AlmostNoSecurity -> Gem :: Security :: Policy (6.0) -
ほとんどの検証を行わないポリシーです。
...んど役に立たない上、
簡単に騙すことができるので、使用しないでください。
:verify_data => true,
:verify_signer => false,
:verify_chain => false,
:verify_root => false,
:only_trusted => false,
:only_signed => false... -
Gem
:: Security :: HighSecurity -> Gem :: Security :: Policy (6.0) -
高レベルのセキュリティポリシーです。
...頼します。
このセキュリティポリシーはバイパスするのがものすごく困難です。
:verify_data => true,
:verify_signer => true,
:verify_chain => true,
:verify_root => true,
:only_trusted => true,
:only_signed => true... -
Gem
:: Security :: LowSecurity -> Gem :: Security :: Policy (6.0) -
低レベルのセキュリティのポリシーです。
...んど役に立たない上、
簡単に騙すことができるので、使用しないでください。
:verify_data => true,
:verify_signer => true,
:verify_chain => false,
:verify_root => false,
:only_trusted => false,
:only_signed => false... -
Gem
:: Security :: MediumSecurity -> Gem :: Security :: Policy (6.0) -
中レベルのセキュリティポリシーです。
...悪な人物がパッケージの署名を単純に削除して検証をパスさせることができます。
:verify_data => true,
:verify_signer => true,
:verify_chain => true,
:verify_root => true,
:only_trusted => true,
:only_signed => false... -
Gem
:: Security :: NoSecurity -> Gem :: Security :: Policy (6.0) -
セキュリティなしのポリシーです。
...セキュリティなしのポリシーです。
全ての検証を行いません。
:verify_data => false,
:verify_signer => false,
:verify_chain => false,
:verify_root => false,
:only_trusted => false,
:only_signed => false...