### YamlMime:ManagedReference items: - uid: CapyKit.Pbkdf2Algorithm commentId: T:CapyKit.Pbkdf2Algorithm id: Pbkdf2Algorithm parent: CapyKit children: - CapyKit.Pbkdf2Algorithm.#ctor - CapyKit.Pbkdf2Algorithm.AlgorithmName - CapyKit.Pbkdf2Algorithm.Encrypt(System.String,System.Object[]) - CapyKit.Pbkdf2Algorithm.ITERATIONS - CapyKit.Pbkdf2Algorithm.LENGTH langs: - csharp - vb name: Pbkdf2Algorithm nameWithType: Pbkdf2Algorithm fullName: CapyKit.Pbkdf2Algorithm type: Class source: remote: path: CapyKit/Password.cs branch: main repo: https://git.jordanwages.com/wagesj45/CapyKit.git id: Pbkdf2Algorithm path: ../CapyKit/Password.cs startLine: 169 assemblies: - CapyKit namespace: CapyKit summary: Implements the PBKDF2 algorithm for password encryption. example: [] syntax: content: 'public class Pbkdf2Algorithm : IPasswordAlgorithm' content.vb: Public Class Pbkdf2Algorithm Implements IPasswordAlgorithm inheritance: - System.Object implements: - CapyKit.IPasswordAlgorithm inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) - System.Object.GetHashCode - System.Object.GetType - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString extensionMethods: - CapyKit.Pbkdf2Algorithm.CapyKit.Extensions.ObjectExtensions.UpdateProperties``1(CapyKit.Pbkdf2Algorithm) - System.Object.CapyKit.Extensions.ObjectExtensions.UpdateProperties(System.Object) - uid: CapyKit.Pbkdf2Algorithm.LENGTH commentId: F:CapyKit.Pbkdf2Algorithm.LENGTH id: LENGTH parent: CapyKit.Pbkdf2Algorithm langs: - csharp - vb name: LENGTH nameWithType: Pbkdf2Algorithm.LENGTH fullName: CapyKit.Pbkdf2Algorithm.LENGTH type: Field source: remote: path: CapyKit/Password.cs branch: main repo: https://git.jordanwages.com/wagesj45/CapyKit.git id: LENGTH path: ../CapyKit/Password.cs startLine: 175 assemblies: - CapyKit namespace: CapyKit summary: (Immutable) The default length. remarks: This member is immutable. example: [] syntax: content: public const int LENGTH = 32 return: type: System.Int32 content.vb: Public Const LENGTH As Integer = 32 - uid: CapyKit.Pbkdf2Algorithm.ITERATIONS commentId: F:CapyKit.Pbkdf2Algorithm.ITERATIONS id: ITERATIONS parent: CapyKit.Pbkdf2Algorithm langs: - csharp - vb name: ITERATIONS nameWithType: Pbkdf2Algorithm.ITERATIONS fullName: CapyKit.Pbkdf2Algorithm.ITERATIONS type: Field source: remote: path: CapyKit/Password.cs branch: main repo: https://git.jordanwages.com/wagesj45/CapyKit.git id: ITERATIONS path: ../CapyKit/Password.cs startLine: 179 assemblies: - CapyKit namespace: CapyKit summary: The default number of iterations. remarks: This member is immutable. example: [] syntax: content: public const int ITERATIONS = 100000 return: type: System.Int32 content.vb: Public Const ITERATIONS As Integer = 100000 - uid: CapyKit.Pbkdf2Algorithm.AlgorithmName commentId: P:CapyKit.Pbkdf2Algorithm.AlgorithmName id: AlgorithmName parent: CapyKit.Pbkdf2Algorithm langs: - csharp - vb name: AlgorithmName nameWithType: Pbkdf2Algorithm.AlgorithmName fullName: CapyKit.Pbkdf2Algorithm.AlgorithmName type: Property source: remote: path: CapyKit/Password.cs branch: main repo: https://git.jordanwages.com/wagesj45/CapyKit.git id: AlgorithmName path: ../CapyKit/Password.cs startLine: 186 assemblies: - CapyKit namespace: CapyKit summary: Gets the name of the algorithm. example: [] syntax: content: public string AlgorithmName { get; } parameters: [] return: type: System.String content.vb: Public ReadOnly Property AlgorithmName As String overload: CapyKit.Pbkdf2Algorithm.AlgorithmName* implements: - CapyKit.IPasswordAlgorithm.AlgorithmName - uid: CapyKit.Pbkdf2Algorithm.#ctor commentId: M:CapyKit.Pbkdf2Algorithm.#ctor id: '#ctor' parent: CapyKit.Pbkdf2Algorithm langs: - csharp - vb name: Pbkdf2Algorithm() nameWithType: Pbkdf2Algorithm.Pbkdf2Algorithm() fullName: CapyKit.Pbkdf2Algorithm.Pbkdf2Algorithm() type: Constructor source: remote: path: CapyKit/Password.cs branch: main repo: https://git.jordanwages.com/wagesj45/CapyKit.git id: .ctor path: ../CapyKit/Password.cs startLine: 199 assemblies: - CapyKit namespace: CapyKit summary: Default constructor. example: [] syntax: content: public Pbkdf2Algorithm() content.vb: Public Sub New() overload: CapyKit.Pbkdf2Algorithm.#ctor* nameWithType.vb: Pbkdf2Algorithm.New() fullName.vb: CapyKit.Pbkdf2Algorithm.New() name.vb: New() - uid: CapyKit.Pbkdf2Algorithm.Encrypt(System.String,System.Object[]) commentId: M:CapyKit.Pbkdf2Algorithm.Encrypt(System.String,System.Object[]) id: Encrypt(System.String,System.Object[]) parent: CapyKit.Pbkdf2Algorithm langs: - csharp - vb name: Encrypt(string, params object[]) nameWithType: Pbkdf2Algorithm.Encrypt(string, params object[]) fullName: CapyKit.Pbkdf2Algorithm.Encrypt(string, params object[]) type: Method source: remote: path: CapyKit/Password.cs branch: main repo: https://git.jordanwages.com/wagesj45/CapyKit.git id: Encrypt path: ../CapyKit/Password.cs startLine: 219 assemblies: - CapyKit namespace: CapyKit summary: Encrypts the given password using a PBKDF2 algorithm. example: [] syntax: content: public byte[] Encrypt(string password, params object[] args) parameters: - id: password type: System.String description: The plaintext password. - id: args type: System.Object[] description: >- Additional arguments for the encryption process, specifically
saltlengthiterationspassword.
content.vb: Public Function Encrypt(password As String, ParamArray args As Object()) As Byte()
overload: CapyKit.Pbkdf2Algorithm.Encrypt*
implements:
- CapyKit.IPasswordAlgorithm.Encrypt(System.String,System.Object[])
nameWithType.vb: Pbkdf2Algorithm.Encrypt(String, ParamArray Object())
fullName.vb: CapyKit.Pbkdf2Algorithm.Encrypt(String, ParamArray Object())
name.vb: Encrypt(String, ParamArray Object())
references:
- uid: CapyKit
commentId: N:CapyKit
href: CapyKit.html
name: CapyKit
nameWithType: CapyKit
fullName: CapyKit
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
name: object
nameWithType: object
fullName: object
nameWithType.vb: Object
fullName.vb: Object
name.vb: Object
- uid: CapyKit.IPasswordAlgorithm
commentId: T:CapyKit.IPasswordAlgorithm
parent: CapyKit
href: CapyKit.IPasswordAlgorithm.html
name: IPasswordAlgorithm
nameWithType: IPasswordAlgorithm
fullName: CapyKit.IPasswordAlgorithm
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name: Equals(object)
nameWithType: object.Equals(object)
fullName: object.Equals(object)
nameWithType.vb: Object.Equals(Object)
fullName.vb: Object.Equals(Object)
name.vb: Equals(Object)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name: Equals(object, object)
nameWithType: object.Equals(object, object)
fullName: object.Equals(object, object)
nameWithType.vb: Object.Equals(Object, Object)
fullName.vb: Object.Equals(Object, Object)
name.vb: Equals(Object, Object)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
name: GetHashCode()
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
name: GetType()
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
name: MemberwiseClone()
nameWithType: object.MemberwiseClone()
fullName: object.MemberwiseClone()
nameWithType.vb: Object.MemberwiseClone()
fullName.vb: Object.MemberwiseClone()
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name: ReferenceEquals(object, object)
nameWithType: object.ReferenceEquals(object, object)
fullName: object.ReferenceEquals(object, object)
nameWithType.vb: Object.ReferenceEquals(Object, Object)
fullName.vb: Object.ReferenceEquals(Object, Object)
name.vb: ReferenceEquals(Object, Object)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
name: ToString()
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
- uid: CapyKit.Pbkdf2Algorithm.CapyKit.Extensions.ObjectExtensions.UpdateProperties``1(CapyKit.Pbkdf2Algorithm)
commentId: M:CapyKit.Extensions.ObjectExtensions.UpdateProperties``1(``0,``0)
parent: CapyKit.Extensions.ObjectExtensions
definition: CapyKit.Extensions.ObjectExtensions.UpdateProperties``1(``0,``0)
href: CapyKit.Extensions.ObjectExtensions.html#CapyKit_Extensions_ObjectExtensions_UpdateProperties__1___0___0_
name: UpdateProperties