Bagikan melalui


Hash.SHA1 Properti

Definisi

SHA1 Mendapatkan nilai hash untuk assembly.

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()

Nilai Properti

Byte[]

Array byte yang mewakili SHA1 nilai hash untuk assembly.

Contoh

Contoh berikut menghitung SHA1 hash untuk myAssembly dan menyimpannya di 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

Keterangan

Rakitan yang ditentukan dalam konstruktor menyediakan byte untuk komputasi hash.

Karena masalah tabrakan dengan SHA1, Microsoft merekomendasikan SHA256.

Berlaku untuk