Class PersistedPasswordSettings
The data stored against the user for their password configuration
Inheritance
System.Object
Namespace: Umbraco.Cms.Core.Models.Membership
Assembly: Umbraco.Core.dll
Syntax
[DataContract(Name = "userPasswordSettings", Namespace = "")]
public class PersistedPasswordSettings
Properties
View SourceHashAlgorithm
The algorithm name
Declaration
[DataMember(Name = "hashAlgorithm")]
public string HashAlgorithm { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Remarks
This doesn't explicitly need to map to a 'true' algorithm name, this may match an algorithm name alias that uses many different options such as PBKDF2.ASPNETCORE.V3 which would map to the aspnetcore's v3 implementation of PBKDF2 PBKDF2 with HMAC-SHA256, 128-bit salt, 256-bit subkey, 10000 iterations.