C# Class SecurityDriven.Inferno.Kdf.PBKDF2

Inheritance: DeriveBytes
Mostra file Open project: sdrapkin/SecurityDriven.Inferno Class Usage Examples

Public Methods

Method Description
PBKDF2 ( Func hmacFactory, byte password, byte salt, int iterations ) : System

ctor

PBKDF2 ( Func hmacFactory, string password, byte salt ) : System

ctor

PBKDF2 ( Func hmacFactory, string password, byte salt, int iterations ) : System

ctor

PBKDF2 ( Func hmacFactory, string password, int saltSize ) : System

ctor

PBKDF2 ( Func hmacFactory, string password, int saltSize, int iterations ) : System

ctor

Method Details

PBKDF2() public method

ctor
public PBKDF2 ( Func hmacFactory, byte password, byte salt, int iterations ) : System
hmacFactory Func hmacFactory
password byte password
salt byte salt
iterations int iterations
return System

PBKDF2() public method

ctor
public PBKDF2 ( Func hmacFactory, string password, byte salt ) : System
hmacFactory Func hmacFactory
password string password
salt byte salt
return System

PBKDF2() public method

ctor
public PBKDF2 ( Func hmacFactory, string password, byte salt, int iterations ) : System
hmacFactory Func hmacFactory
password string password
salt byte salt
iterations int iterations
return System

PBKDF2() public method

ctor
public PBKDF2 ( Func hmacFactory, string password, int saltSize ) : System
hmacFactory Func hmacFactory
password string password
saltSize int saltSize
return System

PBKDF2() public method

ctor
public PBKDF2 ( Func hmacFactory, string password, int saltSize, int iterations ) : System
hmacFactory Func hmacFactory
password string password
saltSize int saltSize
iterations int iterations
return System