Freigeben über


SHA1CryptoServiceProvider-Klasse

Berechnet den SHA1-Hashwert für die Eingabedaten unter Verwendung der vom Kryptografiedienstanbieter (Cryptographic Service Provider, CSP) zur Verfügung gestellten Implementierung. Diese Klasse kann nicht vererbt werden.

Namespace: System.Security.Cryptography
Assembly: mscorlib (in mscorlib.dll)

Syntax

'Declaration
<ComVisibleAttribute(True)> _
Public NotInheritable Class SHA1CryptoServiceProvider
    Inherits SHA1
'Usage
Dim instance As SHA1CryptoServiceProvider
[ComVisibleAttribute(true)] 
public sealed class SHA1CryptoServiceProvider : SHA1
[ComVisibleAttribute(true)] 
public ref class SHA1CryptoServiceProvider sealed : public SHA1
/** @attribute ComVisibleAttribute(true) */ 
public final class SHA1CryptoServiceProvider extends SHA1
ComVisibleAttribute(true) 
public final class SHA1CryptoServiceProvider extends SHA1

Hinweise

Die Hashgröße für die SHA1CryptoServiceProvider-Klasse beträgt 160 Bits.

Beispiel

Im folgenden Codebeispiel wird der SHA1-Hashwert für data berechnet und in result gespeichert. In diesem Beispiel wird davon ausgegangen, dass die vordefinierte Konstante DATA_SIZE vorhanden ist.

Dim data(DATA_SIZE) As Byte
       
Dim result() As Byte
       
Dim sha As New SHA1CryptoServiceProvider()
' This is one implementation of the abstract class SHA1.
result = sha.ComputeHash(data)
byte[] data = new byte[DATA_SIZE];

byte[] result; 
 
SHA1 sha = new SHA1CryptoServiceProvider(); 
// This is one implementation of the abstract class SHA1.

result = sha.ComputeHash(data);
array<Byte>^ data = gcnew array<Byte>( DATA_SIZE );

array<Byte>^ result;

SHA1^ sha = gcnew SHA1CryptoServiceProvider;

// This is one implementation of the abstract class SHA1.
result = sha->ComputeHash( data );
ubyte data[] = new ubyte[data_Size];
ubyte result[];
SHA1 sha = new SHA1CryptoServiceProvider();

// This is one implementation of the abstract class SHA1.
result = sha.ComputeHash(data);

Vererbungshierarchie

System.Object
   System.Security.Cryptography.HashAlgorithm
     System.Security.Cryptography.SHA1
      System.Security.Cryptography.SHA1CryptoServiceProvider

Threadsicherheit

Alle öffentlichen statischen (Shared in Visual Basic) Member dieses Typs sind threadsicher. Bei Instanzmembern ist die Threadsicherheit nicht gewährleistet.

Plattformen

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

.NET Compact Framework

Unterstützt in: 2.0

Siehe auch

Referenz

SHA1CryptoServiceProvider-Member
System.Security.Cryptography-Namespace

Weitere Ressourcen

Kryptografische Dienste