'Declaration<JetBrains.Annotations.NotNullAttribute()> Protected Overridable Function CreateDeriveBytes( _ ByVal password As String, _ ByVal salt() As Byte, _ ByVal algorithmId As String, _ ByVal iterations As Nullable(Of Integer) _ ) As DeriveBytes
'UsageDim instance As MemoryNameAndPasswordUserManager Dim password As String Dim salt() As Byte Dim algorithmId As String Dim iterations As Nullable(Of Integer) Dim value As DeriveBytes value = instance.CreateDeriveBytes(password, salt, algorithmId, iterations)
[JetBrains.Annotations.NotNull()] protected virtual DeriveBytes CreateDeriveBytes( string password, byte[] salt, string algorithmId, Nullable<int> iterations )
[JetBrains.Annotations.NotNull()] protected: virtual DeriveBytes^ CreateDeriveBytes( String^ password, array<byte>^ salt, String^ algorithmId, Nullable<int> iterations )
Parameters
- password
- The password to hash.
The value of this parameter cannot be
null(Nothingin Visual Basic). - salt
- The salt to use in hashing.
The value of this parameter cannot be
null(Nothingin Visual Basic). - algorithmId
- The algorithm ID to use for hashing.
The value of this parameter cannot be
null(Nothingin Visual Basic). - iterations
- The number of iterations for hashing.
Return Value
This method never returns null (Nothing in Visual Basic).