360件ヒット
[1-100件を表示]
(0.106秒)
ライブラリ
-
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件
-
Psych
:: SyntaxError # context -> String (18203.0) -
エラーが生じたコンテキストを文字列で返します。
エラーが生じたコンテキストを文字列で返します。 -
OpenSSL
:: SSL :: SSLContext # session _ id _ context -> String | nil (9209.0) -
セッション ID コンテキスト文字列を返します。
...セッション ID コンテキスト文字列を返します。
設定されていない場合は nil を返します。
@see OpenSSL::SSL::Session,
OpenSSL::SSL::SSLContext#session_id_context=... -
OpenSSL
:: X509 :: StoreContext # error _ string -> String (9203.0) -
検証したときのエラー文字列を返します。
...のエラー文字列を返します。
OpenSSL::X509::StoreContext#verify を呼びだし、
証明書チェインの各証明書を検証した
コールバック(OpenSSL::X509::Store#verify_callback=)が呼び出され、
StoreContext オブジェクトが渡されますが、このメソッド......を呼ぶと
直前の証明書検証結果のエラー文字列が得られます。
OpenSSL::X509::StoreContext#verify を呼び出したあと、
このメソッドを呼ぶと検証の最終的な検証結果のエラー文字列を返します。
検証に成功した場合は "ok" を返し... -
OpenSSL
:: SSL :: SSLContext # ciphers -> [[String , String , Integer , Integer]] (3203.0) -
利用可能な共通鍵暗号の種類を配列で返します。
...なSSL/TLSのバージョン文字列, 鍵長(ビット数), アルゴリズムのビット長]
例:
require 'openssl'
ctx = OpenSSL::SSL::SSLContext.new('TLSv1')
ctx.ciphers
# => [["DHE-RSA-AES256-SHA", "TLSv1/SSLv3", 256, 256],
# ["DHE-DSS-AES256-SHA", "TLSv1/SSLv3", 256, 256], ...... -
IRB
:: Context # ap _ name -> String (3108.0) -
自身のアプリケーション名を返します。
...自身のアプリケーション名を返します。
デフォルト値は "irb" です。
@see IRB::Context#ap_name=... -
IRB
:: Context # history _ file -> String | nil (3108.0) -
履歴ファイルのパスを返します。
...履歴ファイルのパスを返します。
@return 履歴ファイルのパスを String か nil で返します。nil を返し
た場合は、~/.irb_history に履歴が保存されます。
@see lib:irb#history... -
IRB
:: Context # irb _ name -> String (3108.0) -
起動しているコマンド名を文字列で返します。
...起動しているコマンド名を文字列で返します。
@see IRB::Context#irb_name=... -
IRB
:: Context # prompt _ c -> String (3108.0) -
式が継続している時のプロンプトを表現するフォーマット文字列を返します。
...式が継続している時のプロンプトを表現するフォーマット文字列を返します。
@see IRB::Context#prompt_c=, lib:irb#customize_prompt... -
IRB
:: Context # prompt _ i -> String (3108.0) -
通常のプロンプトを表現するフォーマット文字列を返します。
...通常のプロンプトを表現するフォーマット文字列を返します。
@see IRB::Context#prompt_i=,lib:irb#customize_prompt...