mirror of
https://github.com/wagesj45/CapyKit.git
synced 2024-11-12 19:23:36 -06:00
1.3 KiB
1.3 KiB
Password Constructor
Constructor.
Definition
Namespace: CapyKit
Assembly: CapyKit (in CapyKit.dll) Version: 1.0.2
C#
public Password(
string password,
byte[] salt,
IPasswordAlgorithm algorithm,
params Object[] args
)
F#
new :
password : string *
salt : byte[] *
algorithm : IPasswordAlgorithm *
args : Object[] -> Password
Parameters
- String
- The password to be hashed.
- Byte[]
- The salt used for encryption.
- IPasswordAlgorithm
- The algorithm used for password encryption.
- Object[]
- A variable-length parameters list containing arguments to include for the algorithm.