Hash.SHA1 Eigenschaft

Definition

Ruft den SHA1-Hashwert für die Assembly ab.

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

Eigenschaftswert

Byte[]

Ein Bytearray, das den SHA1-Hashwert für die Assembly darstellt.

Beispiele

Im folgenden Beispiel wird der SHA1 Hash für myAssembly und speichert ihn in 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

Hinweise

Die im Konstruktor angegebene Assembly stellt die Bytes für die Hashberechnung bereit.

Microsoft empfiehlt aufgrund der Konflikte mit SHA1 SHA256.

Gilt für