Show / Hide Table of Contents

Class PasswordHasherOptions

Defined parameter for PasswordHasher.

Inheritance
object
PasswordHasherOptions
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Sartorius.SAF.Security
Assembly: Sartorius.SAF.dll
Syntax
public class PasswordHasherOptions

Constructors

View Source

PasswordHasherOptions()

Create and initialize a new instance of PasswordHasherOptions using default parameter.

Declaration
public PasswordHasherOptions()
View Source

PasswordHasherOptions(uint, ushort, ushort)

Create and initialize a new instance of PasswordHasherOptions.

Declaration
public PasswordHasherOptions(uint iterations, ushort saltLength, ushort hashLength)
Parameters
Type Name Description
uint iterations

The iterations value.

ushort saltLength

The length of salt array

ushort hashLength

The length of hash array

Properties

View Source

HashLength

Gets a length of hash array.

Declaration
public ushort HashLength { get; }
Property Value
Type Description
ushort
View Source

Iterations

Gets the iterations value.

Declaration
public uint Iterations { get; }
Property Value
Type Description
uint
View Source

SaltLength

Gets a length of salt array.

Declaration
public ushort SaltLength { get; }
Property Value
Type Description
ushort

Extension Methods

CollectionExtensions.AddRange<T, TCollection>(TCollection, IEnumerable<T>)
SerializableObjectCloneExtension.Clone<T>(T)
  • View Source
Back to top Generated by DocFX