Go to main content

マニュアルページ セクション 1: ユーザーコマンド

印刷ビューの終了

更新: 2022年7月27日
 
 

digest(1)

名前

digest - メッセージダイジェストの計算

形式

/usr/bin/digest -l | [-v] -a algorithm [-t truncation] [file]...

説明

digest ユーティリティーは、指定されたアルゴリズムを使用して、指定されたファイルまたは stdin のメッセージダイジェストを計算します。複数のファイルが指定された場合、出力の各行が単一ファイルのダイジェストになります。

オプション

サポートしているオプションは、次のとおりです。

–a algorithm

暗号化または復号化プロセスで使用するアルゴリズムの名前を指定します。詳細については、「使用法」の「Algorithms」を参照してください。

–l

システムで利用可能なアルゴリズムの一覧を表示します。この一覧は、暗号化フレームワークの構成によって変わります。

–v

Verbose output.アルゴリズム名とファイル名を出力に含めます。This produces output similar to the GNU coreutils digest utilities, md5sum(1), sha1sum(1), sha256sum(1), sha512sum(1), etc.

–t truncation

ダイジェスト切り捨ての長さを指定します。ここで、t は 512 より小さい任意の正の数値です。アルゴリズム sha512_t に対してのみ有効です。

使用法

Algorithms

The supported algorithms are displayed by the –l option.これらのアルゴリズムは、暗号化フレームワークによって提供されます。これらの値は –a オプションで使用され、大文字と小文字が区別されます。

使用例 1 Digesting a File

The following example generates the SHA256 digest of the file /etc/motd:

example$ digest -a sha256 /etc/motd
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855

The following example displays the SHA512/256 digest of the file /etc/motd:

example $ digest -a sha512_t -t 256 /etc/motd
1917c02fbf36970f354defef8c089adf5767cec93c3ca2b28fe29958c4361e69
使用例 2 ディレクトリマニフェストを生成する

The following example generates a directory manifest with SHA-1:

example$ digest -v -a sha1 /usr/lib/inet/*
sha1 (/usr/lib/inet/certdb) = f6d43e6e395d50db24d34e4af4828598c8918b16
sha1 (/usr/lib/inet/certlocal) = 7f74ba4a019b809c7023212b4bda10d9485e071d
sha1 (/usr/lib/inet/certrldb) = 1f845d30b8d02066647de04311e74549049852ed
sha1 (/usr/lib/inet/dhcp) = e3db5e4ff40a69d13f2497254526c2015d2c37b3
sha1 (/usr/lib/inet/dsvclockd) = b61aad7ed6a0f82145c3c26aedc613ab4a1f032e
sha1 (/usr/lib/inet/in.dhcpd) = 382210180c826fbb2e747236c489062bac8cc30b
sha1 (/usr/lib/inet/in.iked) = be6061fad725d37256e773dc85f8bd5248649463
sha1 (/usr/lib/inet/in.mpathd) = 5bd6bf0340fd5c4cc0c53f2df158302a0e85f9d0
sha1 (/usr/lib/inet/in.ndpd) = fdb768aebe7e5eb4465e1c1bb5e679b496f5c5c6
sha1 (/usr/lib/inet/in.ripngd) = 4f56a0df2d4a252f581a73c2e84143b920d0b66b
sha1 (/usr/lib/inet/wanboot) = a8b8c51c389c774d0be2ae43cb85d1b1439484ae
sha1 (/usr/lib/inet/ntpd) = 5b4aff102372cea801e7d08acde9655fec81f07c
使用例 3 利用可能なアルゴリズムの一覧を表示する

次の例では、ダイジェストに利用可能なアルゴリズムの一覧を表示します。

example $ digest -l
sha1
md5
sha224
sha256
sha384
sha512
sha512_t
sha3_224
sha3_256
sha3_384
sha3_512

終了ステータス

次の終了ステータスが返されます。

0

正常終了。

> 0

An error occurred.

属性

属性についての詳細は、マニュアルページの attributes(7) を参照してください。

属性タイプ
属性値
使用条件
system/core-os
インタフェースの安定性
確実

関連項目

cksum(1), encrypt(1), mac(1), libpkcs11(3LIB), attributes(7), pkcs11_softtoken(7), bart(8), cryptoadm(8)

History

The SHA-3 algorithms sha3_224, sha3_256, sha3_384, and sha3_512 were added in Oracle Solaris 11.4.0.

The –t option and sha512_t algorithm were added in Solaris 11.4.0.

The sha224 algorithm was added in Solaris 11.1.0.

The SHA-2 algorithms sha256, sha384, and sha512 were added in Solaris 10 6/06 (Update 2).

The digest command, and all other algorithms & options, were added in Solaris 10 3/05.