360件ヒット
[1-100件を表示]
(0.123秒)
ライブラリ
-
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件
-
OpenSSL
:: SSL :: SSLContext # session _ id _ context -> String | nil (24409.0) -
セッション ID コンテキスト文字列を返します。
...セッション ID コンテキスト文字列を返します。
設定されていない場合は nil を返します。
@see OpenSSL::SSL::Session,
OpenSSL::SSL::SSLContext#session_id_context=... -
Psych
:: SyntaxError # context -> String (24303.0) -
エラーが生じたコンテキストを文字列で返します。
エラーが生じたコンテキストを文字列で返します。 -
OpenSSL
:: X509 :: StoreContext # error _ string -> String (12203.0) -
検証したときのエラー文字列を返します。
...のエラー文字列を返します。
OpenSSL::X509::StoreContext#verify を呼びだし、
証明書チェインの各証明書を検証した
コールバック(OpenSSL::X509::Store#verify_callback=)が呼び出され、
StoreContext オブジェクトが渡されますが、このメソッド......を呼ぶと
直前の証明書検証結果のエラー文字列が得られます。
OpenSSL::X509::StoreContext#verify を呼び出したあと、
このメソッドを呼ぶと検証の最終的な検証結果のエラー文字列を返します。
検証に成功した場合は "ok" を返し... -
RDoc
:: Context :: Section # comment -> String | nil (9102.0) -
section のコメントを返します。
...section のコメントを返します。... -
RDoc
:: Context :: Section # inspect -> String (9102.0) -
自身の情報を人間に読みやすい文字列にして返します。
自身の情報を人間に読みやすい文字列にして返します。 -
RDoc
:: Context :: Section # sequence -> String (9102.0) -
section のシーケンス番号を文字列で返します。
...section のシーケンス番号を文字列で返します。
リンクを作成する時に使われます。... -
RDoc
:: Context :: Section # title -> String | nil (9102.0) -
section のタイトルを返します。
...section のタイトルを返します。... -
OpenSSL
:: SSL :: SSLContext # ciphers -> [[String , String , Integer , Integer]] (6203.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 (6108.0) -
自身のアプリケーション名を返します。
...自身のアプリケーション名を返します。
デフォルト値は "irb" です。
@see IRB::Context#ap_name=...