SHA256 类

定义

计算 SHA256 输入数据的哈希。

public ref class SHA256 abstract : System::Security::Cryptography::HashAlgorithm
public abstract class SHA256 : System.Security.Cryptography.HashAlgorithm
[System.Runtime.InteropServices.ComVisible(true)]
public abstract class SHA256 : System.Security.Cryptography.HashAlgorithm
type SHA256 = class
    inherit HashAlgorithm
[<System.Runtime.InteropServices.ComVisible(true)>]
type SHA256 = class
    inherit HashAlgorithm
Public MustInherit Class SHA256
Inherits HashAlgorithm
继承
派生
属性

示例

以下示例计算目录中所有文件的 SHA-256 哈希。

using System;
using System.IO;
using System.Security.Cryptography;

public class HashDirectory
{
    public static void Main(string[] args)
    {
        if (args.Length < 1)
        {
            Console.WriteLine("No directory selected.");
            return;
        }

        string directory = args[0];
        if (Directory.Exists(directory))
        {
            // Create a DirectoryInfo object representing the specified directory.
            var dir = new DirectoryInfo(directory);
            // Get the FileInfo objects for every file in the directory.
            FileInfo[] files = dir.GetFiles();
            // Initialize a SHA256 hash object.
            using (SHA256 mySHA256 = SHA256.Create())
            {
                // Compute and print the hash values for each file in directory.
                foreach (FileInfo fInfo in files)
                {
                    using (FileStream fileStream = fInfo.Open(FileMode.Open))
                    {
                        try
                        {
                            // Create a fileStream for the file.
                            // Be sure it's positioned to the beginning of the stream.
                            fileStream.Position = 0;
                            // Compute the hash of the fileStream.
                            byte[] hashValue = mySHA256.ComputeHash(fileStream);
                            // Write the name and hash value of the file to the console.
                            Console.Write($"{fInfo.Name}: ");
                            PrintByteArray(hashValue);
                        }
                        catch (IOException e)
                        {
                            Console.WriteLine($"I/O Exception: {e.Message}");
                        }
                        catch (UnauthorizedAccessException e)
                        {
                            Console.WriteLine($"Access Exception: {e.Message}");
                        }
                    }
                }
            }
        }
        else
        {
            Console.WriteLine("The directory specified could not be found.");
        }
    }

    // Display the byte array in a readable format.
    public static void PrintByteArray(byte[] array)
    {
        for (int i = 0; i < array.Length; i++)
        {
            Console.Write($"{array[i]:X2}");
            if ((i % 4) == 3) Console.Write(" ");
        }
        Console.WriteLine();
    }
}
Imports System.IO
Imports System.Security.Cryptography

Public Module HashDirectory

    Public Sub Main(ByVal args() As String)
        If args.Length < 1 Then
            Console.WriteLine("No directory selected")
            Return
        End If

        Dim targetDirectory As String = args(0)
        If Directory.Exists(targetDirectory) Then
            ' Create a DirectoryInfo object representing the specified directory.
            Dim dir As New DirectoryInfo(targetDirectory)
            ' Get the FileInfo objects for every file in the directory.
            Dim files As FileInfo() = dir.GetFiles()
            ' Initialize a SHA256 hash object.
            Using mySHA256 As SHA256 = SHA256.Create()
                ' Compute and print the hash values for each file in directory.
                For Each fInfo  As FileInfo In files
                    Try
                        ' Create a fileStream for the file.
                        Dim fileStream = fInfo.Open(FileMode.Open)
                        ' Be sure it's positioned to the beginning of the stream.
                        fileStream.Position = 0
                        ' Compute the hash of the fileStream.
                        Dim hashValue() As Byte = mySHA256.ComputeHash(fileStream)
                        ' Write the name of the file to the Console.
                        Console.Write(fInfo.Name + ": ")
                        ' Write the hash value to the Console.
                        PrintByteArray(hashValue)
                        ' Close the file.
                        fileStream.Close()
                    Catch e As IOException
                        Console.WriteLine($"I/O Exception: {e.Message}")
                    Catch e As UnauthorizedAccessException 
                        Console.WriteLine($"Access Exception: {e.Message}")
                    End Try    
                Next 
            End Using
        Else
           Console.WriteLine("The directory specified could not be found.")
        End If
    End Sub

    ' Print the byte array in a readable format.
    Public Sub PrintByteArray(array() As Byte)
        For i As Integer = 0 To array.Length - 1
            Console.Write($"{array(i):X2}")
            If i Mod 4 = 3 Then
                Console.Write(" ")
            End If
        Next 
        Console.WriteLine()

    End Sub 
End Module

注解

哈希用作表示大量数据的固定大小的唯一值。 如果相应的数据也匹配,则两组数据集的哈希应匹配。 对数据的小更改会导致哈希中出现大量不可预知的更改。

算法的 SHA256 哈希大小为 256 位。

这是一个抽象类。

构造函数

名称 说明
SHA256()

初始化 的新 SHA256实例。

字段

名称 说明
HashSizeInBits

SHA-256 算法生成的哈希大小(以位为单位)。

HashSizeInBytes

SHA-256 算法生成的哈希大小(以字节为单位)。

HashSizeValue

表示计算哈希代码的大小(以位为单位)。

(继承自 HashAlgorithm)
HashValue

表示计算的哈希代码的值。

(继承自 HashAlgorithm)
State

表示哈希计算的状态。

(继承自 HashAlgorithm)

属性

名称 说明
CanReuseTransform

获取一个值,该值指示是否可以重复使用当前转换。

(继承自 HashAlgorithm)
CanTransformMultipleBlocks

在派生类中重写时,获取一个值,该值指示是否可以转换多个块。

(继承自 HashAlgorithm)
Hash

获取计算的哈希代码的值。

(继承自 HashAlgorithm)
HashSize

获取计算哈希代码的大小(以位为单位)。

(继承自 HashAlgorithm)
InputBlockSize

在派生类中重写时,获取输入块大小。

(继承自 HashAlgorithm)
OutputBlockSize

在派生类中重写时,获取输出块大小。

(继承自 HashAlgorithm)

方法

名称 说明
Clear()

释放类使用 HashAlgorithm 的所有资源。

(继承自 HashAlgorithm)
ComputeHash(Byte[], Int32, Int32)

计算指定字节数组的指定区域的哈希值。

(继承自 HashAlgorithm)
ComputeHash(Byte[])

计算指定字节数组的哈希值。

(继承自 HashAlgorithm)
ComputeHash(Stream)

计算指定 Stream 对象的哈希值。

(继承自 HashAlgorithm)
ComputeHashAsync(Stream, CancellationToken)

异步计算指定 Stream 对象的哈希值。

(继承自 HashAlgorithm)
Create()

创建默认实现的 SHA256实例。

Create(String)
已过时.

创建指定实现的 SHA256实例。

Dispose()

释放类的 HashAlgorithm 当前实例使用的所有资源。

(继承自 HashAlgorithm)
Dispose(Boolean)

释放由托管资源使用 HashAlgorithm 的非托管资源,并选择性地释放托管资源。

(继承自 HashAlgorithm)
Equals(Object)

确定指定的对象是否等于当前对象。

(继承自 Object)
GetHashCode()

用作默认哈希函数。

(继承自 Object)
GetType()

获取当前实例的 Type

(继承自 Object)
HashCore(Byte[], Int32, Int32)

在派生类中重写时,将写入对象的数据路由到用于计算哈希的哈希算法中。

(继承自 HashAlgorithm)
HashCore(ReadOnlySpan<Byte>)

将写入对象的数据路由到用于计算哈希的哈希算法中。

(继承自 HashAlgorithm)
HashData(Byte[])

使用 SHA-256 算法计算数据的哈希。

HashData(ReadOnlySpan<Byte>, Span<Byte>)

使用 SHA-256 算法计算数据的哈希。

HashData(ReadOnlySpan<Byte>)

使用 SHA-256 算法计算数据的哈希。

HashData(Stream, Span<Byte>)

使用 SHA-256 算法计算流的哈希。

HashData(Stream)

使用 SHA-256 算法计算流的哈希。

HashDataAsync(Stream, CancellationToken)

使用 SHA-256 算法异步计算流的哈希。

HashDataAsync(Stream, Memory<Byte>, CancellationToken)

使用 SHA-256 算法异步计算流的哈希。

HashFinal()

在派生类中重写时,在加密哈希算法处理最后一个数据之后完成哈希计算。

(继承自 HashAlgorithm)
Initialize()

将哈希算法重置为其初始状态。

(继承自 HashAlgorithm)
MemberwiseClone()

创建当前 Object的浅表副本。

(继承自 Object)
ToString()

返回一个表示当前对象的字符串。

(继承自 Object)
TransformBlock(Byte[], Int32, Int32, Byte[], Int32)

计算输入字节数组的指定区域的哈希值,并将输入字节数组的指定区域复制到输出字节数组的指定区域。

(继承自 HashAlgorithm)
TransformFinalBlock(Byte[], Int32, Int32)

计算指定字节数组的指定区域的哈希值。

(继承自 HashAlgorithm)
TryComputeHash(ReadOnlySpan<Byte>, Span<Byte>, Int32)

尝试计算指定字节数组的哈希值。

(继承自 HashAlgorithm)
TryHashData(ReadOnlySpan<Byte>, Span<Byte>, Int32)

尝试使用 SHA-256 算法计算数据的哈希。

TryHashFinal(Span<Byte>, Int32)

尝试在哈希算法处理最后一个数据后完成哈希计算。

(继承自 HashAlgorithm)

显式接口实现

名称 说明
IDisposable.Dispose()

释放由托管资源使用 HashAlgorithm 的非托管资源,并选择性地释放托管资源。

(继承自 HashAlgorithm)

适用于

另请参阅