360件ヒット
[301-360件を表示]
(0.095秒)
ライブラリ
-
irb
/ context (180) -
irb
/ ext / save-history (12) - openssl (84)
- psych (12)
-
rdoc
/ context (72)
クラス
-
IRB
:: Context (192) -
OpenSSL
:: SSL :: SSLContext (48) -
OpenSSL
:: X509 :: StoreContext (36) -
Psych
:: SyntaxError (12) -
RDoc
:: Context (24) -
RDoc
:: Context :: Section (48)
キーワード
-
_ _ inspect _ _ (12) -
_ _ to _ s _ _ (12) -
ap
_ name (12) -
ap
_ name= (12) -
ca
_ file (12) -
ca
_ path (12) - ciphers (12)
- comment (12)
- error= (12)
-
error
_ string (12) -
history
_ file (12) - inspect (24)
-
irb
_ name (12) -
irb
_ name= (12) -
irb
_ path (12) -
load
_ modules (12) - name (12)
-
prompt
_ c (12) -
prompt
_ i (12) -
prompt
_ n (12) -
prompt
_ s (12) -
return
_ format (12) - sequence (12)
-
session
_ id _ context (12) - title (12)
-
to
_ s (12) -
unmatched
_ alias _ lists (12) - verify (12)
検索結果
先頭5件
-
RDoc
:: Context :: Section # title -> String | nil (3102.0) -
section のタイトルを返します。
section のタイトルを返します。 -
IRB
:: Context # ap _ name=(val) (3013.0) -
自身のアプリケーション名を val に設定します。
...自身のアプリケーション名を val に設定します。
.irbrc ファイル中で IRB.conf[:AP_NAME] を設定する事でも同様の操作が行え
ます。
@param val アプリケーション名を String で指定します。
@see IRB::Context#ap_name... -
IRB
:: Context # irb _ name=(val) (3013.0) -
起動しているコマンド名を val に設定します。
...起動しているコマンド名を val に設定します。
@param val コマンド名を String で指定します。
@see IRB::Context#irb_name... -
OpenSSL
:: X509 :: StoreContext # error=(error) (3013.0) -
エラーコードを設定します。
...エラーコードを設定します。
OpenSSL::X509::StoreContext#verify を呼びだし、
証明書チェインの各証明書を検証した
コールバック(OpenSSL::X509::Store#verify_callback=)が呼び出され、
StoreContext オブジェクトが渡されますが、このメソッド......クの返り値を false にすると、最終的なエラーコードが
ここで設定したものになります。OpenSSL::X509::StoreContext#error_string
もその値に応じた文字列が返るようになります。
例:
require 'openssl'
store = OpenSSL::X509::Store.new
store.se......ctx.error = OpenSSL::X509::V_ERR_APPLICATION_VERIFICATION;
false} # => false
p store.error # => OpenSSL::X509::V_ERR_APPLICATION_VERIFICATION
p store.error_string # => "application verification failure"
@param error エラーコードの整数値
@see OpenSSL::X509::StoreContext#error... -
OpenSSL
:: X509 :: StoreContext # verify -> bool (3007.0) -
証明書を検証します。
...StoreContext.new で設定した証明書を検証します。
検証に成功した場合は true を、失敗した場合は false を返します。
検証の詳細な情報は
* OpenSSL::X509::StoreContext#error
* OpenSSL::X509::StoreContext#error_string
* OpenSSL::X509::StoreContext#chai......n
* OpenSSL::X509::StoreContext#current_crl...