576件ヒット
[1-100件を表示]
(0.056秒)
クラス
- Integer (12)
-
OpenSSL
:: ASN1 :: ObjectId (60) -
OpenSSL
:: BN (156) -
OpenSSL
:: PKey :: EC (12) -
OpenSSL
:: PKey :: RSA (96) -
OpenSSL
:: SSL :: SSLContext (84) -
OpenSSL
:: SSL :: SSLSocket (36) -
OpenSSL
:: X509 :: ExtensionFactory (48) -
OpenSSL
:: X509 :: Store (48) -
OpenSSL
:: X509 :: StoreContext (24)
キーワード
- <=> (12)
-
bit
_ set? (12) - ciphers (12)
-
clear
_ bit! (12) -
client
_ cert _ cb= (12) - cmp (12)
- context (12)
- crl= (12)
- d= (12)
- dmp1= (12)
- dmq1= (12)
- e= (12)
- error= (12)
- flags= (12)
- io (12)
- iqmp= (12)
-
issuer
_ certificate= (12) - ln (12)
-
long
_ name (12) -
mod
_ add (12) -
mod
_ exp (12) -
mod
_ mul (12) -
mod
_ sub (12) - n= (12)
-
num
_ bits (12) - oid (12)
- p= (12)
-
prime
_ fasttest? (12) -
public
_ key? (12) - purpose= (12)
- q= (12)
-
renegotiation
_ cb= (12) -
session
_ new _ cb (12) -
session
_ new _ cb= (12) -
set
_ bit! (12) -
set
_ params (12) -
short
_ name (12) - sn (12)
-
ssl
_ version= (12) -
subject
_ certificate= (12) -
subject
_ request= (12) -
to
_ bn (12) -
to
_ io (12) -
to
_ s (12) - ucmp (12)
- verify (36)
検索結果
先頭5件
-
OpenSSL
:: SSL :: SSLContext # session _ new _ cb=(cb) (17134.0) -
新たなセッションが作られたときに呼び出されるコールバックを 指定します。
...ト(OpenSSL::SSL::SSLSocket), 新たなセッション(OpenSSL::SSL::Session)]
という配列です。
セッションキャッシュについて詳しくは OpenSSL::SSL::Session を
見てください。
@param cb コールバックオブジェクト(Proc もしくは Method)
@see OpenSSL::SSL:......:SSLContext#session_new_cb... -
OpenSSL
:: SSL :: SSLContext # session _ new _ cb -> Proc | nil (17116.0) -
セッションが生成されたときに呼び出されるコールバックを返します。
...セッションが生成されたときに呼び出されるコールバックを返します。
設定されていないときは nil を返します。
@see OpenSSL::SSL::SSLContext#session_new_cb=... -
OpenSSL
:: BN # mod _ add(other , m) -> OpenSSL :: BN (11152.0) -
(self + other) % m を返します。
...(self + other) % m を返します。
//emlist[][ruby]{
require 'openssl'
OpenSSL::BN.new("7").mod_add(OpenSSL::BN.new("3"), OpenSSL::BN.new("6")) # => 4
//}
@param other 和を取る数
@param m 剰余を取る数
@raise OpenSSL::BNError 計算時エラー... -
OpenSSL
:: BN # mod _ exp(other , m) -> OpenSSL :: BN (11152.0) -
(self ** other) % m を返します。
...(self ** other) % m を返します。
//emlist[][ruby]{
require 'openssl'
OpenSSL::BN.new("7").mod_exp(OpenSSL::BN.new("3"), OpenSSL::BN.new("6")) # => 1
//}
@param other 指数
@param m 剰余を取る数
@raise OpenSSL::BNError 計算時エラー... -
OpenSSL
:: BN # mod _ mul(other , m) -> OpenSSL :: BN (11152.0) -
(self * other) % m を返します。
...(self * other) % m を返します。
//emlist[][ruby]{
require 'openssl'
OpenSSL::BN.new("7").mod_mul(OpenSSL::BN.new("3"), OpenSSL::BN.new("6")) # => 3
//}
@param other 積を取る数
@param m 剰余を取る数
@raise OpenSSL::BNError 計算時エラー... -
OpenSSL
:: BN # mod _ sub(other , m) -> OpenSSL :: BN (11152.0) -
(self - other) % m を返します。
...(self - other) % m を返します。
//emlist[][ruby]{
require 'openssl'
OpenSSL::BN.new("27").mod_sub(OpenSSL::BN.new("3"), OpenSSL::BN.new("5")) # => 4
//}
@param other 引く数
@param m 剰余を取る数
@raise OpenSSL::BNError 計算時エラー... -
OpenSSL
:: SSL :: SSLContext # set _ params(params) -> Hash (11135.0) -
パラメータをハッシュで設定します。
...(OpenSSL::SSL::SSLContext#cert=)
* :key (OpenSSL::SSL::SSLContext#key=)
* :client_ca (OpenSSL::SSL::SSLContext#client_ca=)
* :ca_file (OpenSSL::SSL::SSLContext#ca_file=)
* :ca_path (OpenSSL::SSL::SSLContext#ca_path=)
* :timeout (OpenSSL::SSL::SSLContext#timeout=)
* :verify_mode (OpenSSL:......rify_mode=)
* :verify_depth (OpenSSL::SSL::SSLContext#verify_depth=)
* :verify_callback (OpenSSL::SSL::SSLContext#verify_callback=)
* :options (OpenSSL::SSL::SSLContext#options=)
* :cert_store (OpenSSL::SSL::SSLContext#cert_store=)
* :extra_chain_cert (OpenSSL::SSL::SSLContext#extra_chain_......p_dh_callback (OpenSSL::SSL::SSLContext#tmp_dh_callback=)
* :session_id_context (OpenSSL::SSL::SSLContext#session_id_context=)
* :session_get_cb (OpenSSL::SSL::SSLContext#session_get_cb=)
* :session_new_cb (OpenSSL::SSL::SSLContext#session_new_cb=)
* :session_remove_cb (OpenSSL::SSL::SSLCont... -
OpenSSL
:: SSL :: SSLSocket # context -> OpenSSL :: SSL :: SSLContext (11116.0) -
SSLSocket オブジェクトを生成する時に渡されたコンテクストを返します。
...SSLSocket オブジェクトを生成する時に渡されたコンテクストを返します。
@see OpenSSL::SSL::SSLSocket.new... -
OpenSSL
:: PKey :: RSA # d=(new _ d) (11110.0) -
private exponent を設定します。
...private exponent を設定します。
通常このメソッドで値を変更することはありません。
よく考えて必要な場合のみ利用してください。
@param new_d 設定する整数値...