Hash.SHA1 属性

定义

获取程序集的 SHA1 哈希值。

public:
 property cli::array <System::Byte> ^ SHA1 { cli::array <System::Byte> ^ get(); };
public byte[] SHA1 { get; }
member this.SHA1 : byte[]
Public ReadOnly Property SHA1 As Byte()

属性值

Byte[]

一个字节数组,表示程序集的 SHA1 哈希值。

示例

以下示例计算 SHA1 其哈希 myAssembly 并将其 hashcode存储在其中。

Hash^ hash = gcnew Hash( myAssembly );
array<Byte>^ hashcode = hash->SHA1;
Hash hash = new Hash ( myAssembly );
Byte[] hashcode = hash.SHA1;
Dim hash As New Hash(myAssembly)
Dim hashcode As Byte() = hash.SHA1

注解

构造函数中指定的程序集提供哈希计算的字节。

由于与 SHA1 冲突,Microsoft 建议使用 SHA256。

适用于