Version Property
The PBKDF version.
Syntax
[VB.NET] Public Property Version As PbkdfVersions
[C#] public PbkdfVersions Version {get; set;}
enum PbkdfVersions { vPBKDF1, vPBKDF2 }
Remarks
This property specifies the PBKDF version to be used. It is recommended to use PBKDF2 for new applications. PBKDF1 is included only for compatibility with existing applications and is not recommended.
Possible values are:
- 0 (vPBKDF1)
- 1 (vPBKDF2 - default)
Default Value
1