994件ヒット
[1-100件を表示]
(0.088秒)
ライブラリ
- ビルトイン (166)
- delegate (24)
- digest (72)
-
digest
/ sha2 (36) - openssl (504)
- pp (24)
- pstore (24)
- rubygems (12)
-
rubygems
/ digest / sha1 (12) -
rubygems
/ digest / sha2 (12) -
rubygems
/ gem _ openssl (12) -
rubygems
/ server (12) -
rubygems
/ source _ index (12) -
rubygems
/ specification (12) -
rubygems
/ version (24) - sync (12)
クラス
- Complex (12)
- Delegator (24)
-
Digest
:: Base (60) -
Digest
:: SHA2 (36) -
Gem
:: Server (12) -
Gem
:: SourceIndex (12) -
Gem
:: Specification (12) -
Gem
:: Version (24) - Object (24)
-
OpenSSL
:: Cipher (12) -
OpenSSL
:: Digest (24) -
OpenSSL
:: Digest :: SHA (36) -
OpenSSL
:: Digest :: SHA1 (36) -
OpenSSL
:: Digest :: SHA224 (36) -
OpenSSL
:: Digest :: SHA256 (36) -
OpenSSL
:: Digest :: SHA384 (36) -
OpenSSL
:: Digest :: SHA512 (36) -
OpenSSL
:: HMAC (36) -
OpenSSL
:: PKey :: PKey (24) -
OpenSSL
:: SSL :: SSLContext (12) -
OpenSSL
:: SSL :: SSLSocket (12) -
OpenSSL
:: X509 :: Request (12) - PP (24)
- PStore (24)
- Random (24)
- Rational (12)
モジュール
-
File
:: Constants (10) - Gem (36)
-
Gem
:: SSL (12) - Kernel (12)
- Marshal (72)
-
OpenSSL
:: PKCS5 (24) -
Sync
_ m (12)
キーワード
- Cipher (12)
-
DIGEST
_ SHA1 (12) - Digest (24)
-
EMPTY
_ MARSHAL _ CHECKSUM (12) -
EMPTY
_ MARSHAL _ DATA (12) - HMAC (12)
-
MAJOR
_ VERSION (12) -
MARSHAL
_ FIELDS (12) -
MINOR
_ VERSION (12) - Marshal (24)
- Marshal フォーマット (12)
- RSA (12)
- Request (12)
- SHA1 (24)
- SHA224 (12)
- SHA256 (24)
- SHA384 (12)
- SHA512 (12)
-
SHARE
_ DELETE (10) -
block
_ length (24) - cipher (12)
- ciphers (12)
- digest (96)
-
digest
_ length (24) - dump (24)
- file (12)
-
gem
_ signature (12) - hexdigest (84)
- length (12)
- load (12)
-
marshal
_ dump (72) -
marshal
_ load (48) -
marshal
_ version (12) - new (108)
- openssl (12)
-
pbkdf2
_ hmac (12) -
pbkdf2
_ hmac _ sha1 (12) -
pkcs5
_ keyivgen (12) - restore (12)
- shared? (6)
-
sharing
_ detection (12) -
sharing
_ detection= (12) - sign (24)
- size (12)
-
sync
_ shared? (6) - verify (12)
検索結果
先頭5件
-
OpenSSL
:: Digest :: SHA (21016.0) -
ハッシュ関数 SHA を表すクラス
...ハッシュ関数 SHA を表すクラス... -
File
:: Constants :: SHARE _ DELETE -> Integer (15200.0) -
ファイルを開いたままの状態でも削除できるように指定して開きます。 O_SHARE_DELETE が指定できる場合に使えます。 File.openで使用します。
...ファイルを開いたままの状態でも削除できるように指定して開きます。
O_SHARE_DELETE が指定できる場合に使えます。
File.openで使用します。
2.3.0 現在はファイルをバイナリとして開いた場合のみ有効です。... -
Complex
# marshal _ dump -> Array (12200.0) -
Marshal.#load のためのメソッドです。 Complex::compatible#marshal_load で復元可能な配列を返します。
...Marshal.#load のためのメソッドです。
Complex::compatible#marshal_load で復元可能な配列を返します。
2.0 以降では Marshal.#load で 1.8 系の Complex オブジェクト
を保存した文字列も復元できます。
[注意] Complex::compatible は通常の方法で... -
Delegator
# marshal _ dump -> object (12200.0) -
シリアライゼーションをサポートするためにDelegator#__getobj__ が返すオブジェクトを返します。
...シリアライゼーションをサポートするためにDelegator#__getobj__ が返すオブジェクトを返します。... -
Delegator
# marshal _ load(obj) -> object (12200.0) -
シリアライズされたオブジェクトから、Delegator#__getobj__ が返すオブジェクトを再現します。
...シリアライズされたオブジェクトから、Delegator#__getobj__ が返すオブジェクトを再現します。
@param obj Delegator#marshal_dumpの戻り値のコピー... -
Gem
. # marshal _ version -> String (12200.0) -
Marshal のバージョンを表す文字列を返します。
...Marshal のバージョンを表す文字列を返します。... -
Gem
:: Server # Marshal(request , response) -> () (12200.0) -
メソッド名に対応する URI に対するリクエストを処理するメソッドです。
メソッド名に対応する URI に対するリクエストを処理するメソッドです。
@param request WEBrick::HTTPRequest オブジェクトが自動的に指定されます。
@param response WEBrick::HTTPResponse オブジェクトが自動的に指定されます。 -
Gem
:: Specification :: MARSHAL _ FIELDS -> Hash (12200.0) -
@todo
@todo -
Gem
:: Version # marshal _ dump -> Array (12200.0) -
完全なオブジェクトではなく、バージョン文字列のみダンプします。
...完全なオブジェクトではなく、バージョン文字列のみダンプします。
//emlist[][ruby]{
p Gem::Version.new('1.2.0a').marshal_dump # => ["1.2.0a"]
//}...