180件ヒット
[1-100件を表示]
(0.087秒)
種類
- インスタンスメソッド (132)
- モジュール関数 (24)
- ライブラリ (12)
- 定数 (12)
ライブラリ
- json (48)
-
net
/ http (36) - openssl (60)
-
rexml
/ parsers / pullparser (12) -
rubygems
/ remote _ fetcher (12)
クラス
-
Gem
:: RemoteFetcher (12) -
JSON
:: State (36) -
Net
:: HTTP (36) -
OpenSSL
:: SSL :: SSLContext (24) -
OpenSSL
:: X509 :: StoreContext (12) -
REXML
:: Parsers :: PullParser (12)
モジュール
- JSON (12)
-
OpenSSL
:: ASN1 (12) -
OpenSSL
:: X509 (12)
キーワード
-
V
_ ERR _ DEPTH _ ZERO _ SELF _ SIGNED _ CERT (12) - depth= (12)
-
drb
/ ssl (12) - dump (12)
-
error
_ depth (12) -
max
_ nesting= (12) -
open
_ uri _ or _ path (12) - peek (12)
- propfind (12)
- traverse (12)
-
verify
_ depth (24) -
verify
_ depth= (24)
検索結果
先頭5件
-
drb
/ ssl (26006.0) -
DRb のプロトコルとして SSL/TLS 上で通信する drbssl が使えるようになります。
...DRb のプロトコルとして SSL/TLS 上で通信する drbssl が使えるようになります。
require 'drb/ssl'
obj = ''
DRb::DRbServer.new( 'drbssl://localhost:10000',
obj,
{:SSLCertName => [["CN","fqdn.example.com"]]})
DRb::DRbServer.new......や DRb.#start_service が
"drbssl" スキームを受け入れるようになります。
また、DRb::DRbObject.new_with_uri でも drbunix スキームが使えるようになります。
サーバを起動するときは以下のオプションが追加で利用できます。
詳しくは、......_dh_callback= で利用します。
デフォルトは nil (指定なし)です。
: :SSLVerifyMode
証明書の検証法を指定します。
OpenSSL::SSL::SSLContext#verify_mode= で利用します。
デフォルトは OpenSSL::SSL::VERIFY_NONE (検証しない)です。
: :SSLVerifyDepth... -
JSON
:: State # depth -> Integer (24217.0) -
This integer returns the current depth of data structure nesting.
...This integer returns the current depth of data structure nesting.... -
Net
:: HTTP # verify _ depth=(depth) (12420.0) -
証明書チェイン上の検証する最大の深さを設定します。
...証明書チェイン上の検証する最大の深さを設定します。
デフォルトは nil で、この場合 OpenSSL のデフォルト値(9)が使われます。
@param depth 最大深さを表す整数
@see Net::HTTP#verify_depth, OpenSSL::SSL::SSLContext#verify_depth=... -
JSON
:: State # depth=(depth) (12418.0) -
This sets the maximum level of data structure nesting in the generated JSON to the integer depth, max_nesting = 0 if no maximum should be checked.
...This sets the maximum level of data structure nesting in the generated
JSON to the integer depth, max_nesting = 0 if no maximum should be
checked.... -
OpenSSL
:: SSL :: SSLContext # verify _ depth=(depth) (12414.0) -
証明書チェイン上の検証する最大の深さを設定します。
...証明書チェイン上の検証する最大の深さを設定します。
デフォルトは nil で、この場合 OpenSSL のデフォルト値(9)が使われます。
@param depth 最大深さを表す整数
@see OpenSSL::SSL::SSLContext#verify_depth... -
Net
:: HTTP # verify _ depth -> Integer (12213.0) -
証明書チェイン上の検証する最大の深さを返します。
...証明書チェイン上の検証する最大の深さを返します。
@see Net::HTTP#verify_depth=, OpenSSL::SSL::SSLContext#verify_depth... -
OpenSSL
:: SSL :: SSLContext # verify _ depth -> Integer | nil (12207.0) -
証明書チェイン上の検証する最大の深さを返します。
...証明書チェイン上の検証する最大の深さを返します。
デフォルトは nil です。
@see OpenSSL::SSL::SSLContext#verify_depth=... -
OpenSSL
:: X509 :: StoreContext # error _ depth -> Integer (12201.0) -
エラーが起きた場所の深さを返します。
エラーが起きた場所の深さを返します。
検証対象の証明書は深さ0、その証明書を発行した CA の証明書は
深さ1、その CA の証明証を発行した上位の CA の証明書は深さ2、…
と定義されいてます。
OpenSSL::X509::StoreContext#verify を呼び出したあと、
このメソッドを呼ぶと検証でエラーが起きた場所の深さを返します。
証明書チェインの各証明書を検証した
コールバック(OpenSSL::X509::Store#verify_callback=)が検証時に
呼びだされ、StoreContext オブジェクトが渡されますが、そのオブジェクトに
対しこのメソッド... -
OpenSSL
:: X509 :: V _ ERR _ DEPTH _ ZERO _ SELF _ SIGNED _ CERT -> Integer (12201.0) -
検証している証明書がルート CA (自己署名証明書)であり、 それが信頼されている証明書でないことを意味します。
...ことを意味します。
OpenSSL::X509::Store#error や
OpenSSL::X509::StoreContext#error のエラーコードとして
使われます。
@see OpenSSL::X509::Store#add_file,
OpenSSL::X509::Store#add_path,
OpenSSL::X509::Store#add_cert,
OpenSSL::X509::Store#set_default_paths...