るりまサーチ

最速Rubyリファレンスマニュアル検索!
1884件ヒット [1-100件を表示] (0.046秒)
トップページ > クエリ:dig[x] > クエリ:digest[x]

別のキーワード

  1. _builtin dig
  2. float dig
  3. float mant_dig
  4. _builtin mant_dig
  5. hash dig

キーワード

検索結果

<< 1 2 3 ... > >>

digest (64024.0)

メッセージダイジェストライブラリです。

...メッセージダイジェストライブラリです。

Digest
::MD5 や Digest::SHA1 などの
全てのメッセージダイジェストの実装クラスは、
基底クラスである Digest::Base と同じインタフェースを持ちます。
基本的な使い方は、MD5やSHA1など、...

Digest::Base#digest -> String (38243.0)

updateや<<によって追加した文字列に対するハッシュ値を文字列で返します。

...SHA256では32バイト長、SHA384では48バイト長、SHA512では64バイト長です。

例:

# MD5の場合
require 'digest/md5'
digest
= Digest::MD5.new
digest
.update("ruby")
p digest.digest # => "X\345=\023$\356\366&_\333\227\260\216\331\252\337"

@see Digest::Base#hexdigest...

Digest::Base.digest(str) -> String (38217.0)

与えられた文字列に対するハッシュ値を文字列で返します。 new(str).digest と等価です。

...与えられた文字列に対するハッシュ値を文字列で返します。
new(str).digest と等価です。...

digest/md5 (32016.0)

1321 に記述されている RSA Data Security, Inc. の MD5 Message-Digest Algorithmを実装するクラスを提供するライブラリです。

...1321 に記述されている RSA Data Security, Inc. の MD5 Message-Digest
Algorithmを実装するクラスを提供するライブラリです。...

digest/bubblebabble (32000.0)

絞り込み条件を変える

digest/rmd160 (32000.0)

Hans Dobbertin, Antoon Bosselaers, Bart Preneel によって設計された RIPEMD-160 ハッシュ関数を実装するクラスを提供するライブラリです。

Hans Dobbertin, Antoon Bosselaers, Bart Preneel によって設計された
RIPEMD-160 ハッシュ関数を実装するクラスを提供するライブラリです。

digest/sha1 (32000.0)

NIST (the US' National Institute of Standards and Technology) のSHA-1 Secure Hash Algorithmを実装するクラスを提供するライブラリです。

NIST (the US' National Institute of Standards and Technology) のSHA-1
Secure Hash Algorithmを実装するクラスを提供するライブラリです。

digest/sha2 (32000.0)

FIPS PUB 180-2に記述されているNIST (the US' National Institute of Standards and Technology) の以下のアルゴリズムを実装するクラスを提供す るライブラリです。

FIPS PUB 180-2に記述されているNIST (the US' National Institute of
Standards and Technology) の以下のアルゴリズムを実装するクラスを提供す
るライブラリです。

* SHA-256 Secure Hash Algorithm
* SHA-384 Secure Hash Algorithm
* SHA-512 Secure Hash Algorithm

Gem::DigestAdapter#digest(string) -> String (30201.0)

@todo

@todo

与えられた文字列のダイジェストを返します。

@param string ダイジェストを取得したい文字列を指定します。
<< 1 2 3 ... > >>