Freigeben über


FormsAuthPasswordFormat-Enumeration

Definiert das Verschlüsselungsformat zum Speichern von Kennwörtern.

Namespace: System.Web.Configuration
Assembly: System.Web (in system.web.dll)

Syntax

'Declaration
Public Enumeration FormsAuthPasswordFormat
'Usage
Dim instance As FormsAuthPasswordFormat
public enum FormsAuthPasswordFormat
public enum class FormsAuthPasswordFormat
public enum FormsAuthPasswordFormat
public enum FormsAuthPasswordFormat

Member

  Membername Beschreibung
Clear Gibt an, dass Kennwörter nicht verschlüsselt sind. Dieses Feld ist konstant. 
MD5 Gibt an, dass Kennwörter mit dem Hashalgorithmus MD5 verschlüsselt sind. Dieses Feld ist konstant. 
SHA1 Gibt an, dass Kennwörter mit dem Hashalgorithmus SHA1 verschlüsselt sind. Dieses Feld ist konstant. 

Hinweise

Mithilfe der AuthenticationSection-Klasse konfigurieren Sie programmgesteuert den Verschlüsselungstyp, der zum Speichern von Kennwörtern in einer Webanwendung verwendet wird. Diese Klasse wird auch intern von der FormsAuthentication bei der Verarbeitung der Authentifizierungstickets verwendet.

Beispiel

Im folgenden Codebeispiel wird die Verwendung der FormsAuthPasswordFormat-Enumeration veranschaulicht. Weitere Informationen zum Abrufen der Auflistung finden Sie im Codebeispiel des Themas über die FormsAuthenticationUserCollection-Klasse.

' Get the current PasswordFormat property value.
  Dim currentPasswordFormat _
  As FormsAuthPasswordFormat = _
  formsAuthenticationCredentials.PasswordFormat


' Set the PasswordFormat property value.
  formsAuthenticationCredentials.PasswordFormat = _
  FormsAuthPasswordFormat.SHA1
// Get the current PasswordFormat property value.
FormsAuthPasswordFormat currentPasswordFormat =
formsAuthenticationCredentials.PasswordFormat;


// Set the PasswordFormat property value.
formsAuthenticationCredentials.PasswordFormat = 
    FormsAuthPasswordFormat.SHA1;

Plattformen

Windows 98, Windows 2000 SP4, 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

Siehe auch

Referenz

System.Web.Configuration-Namespace

Weitere Ressourcen

forms-Element für Authentifizierung (ASP.NET-Einstellungsschema)
credentials-Element für Formulare für die Authentifizierung (ASP.NET-Einstellungsschema)