### 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
  1. salt
  2. length
  3. iterations
return: type: System.Byte[] description: A byte array with the hashed password. 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(Pbkdf2Algorithm, Pbkdf2Algorithm) nameWithType: ObjectExtensions.UpdateProperties(Pbkdf2Algorithm, Pbkdf2Algorithm) fullName: CapyKit.Extensions.ObjectExtensions.UpdateProperties(CapyKit.Pbkdf2Algorithm, CapyKit.Pbkdf2Algorithm) nameWithType.vb: ObjectExtensions.UpdateProperties(Of Pbkdf2Algorithm)(Pbkdf2Algorithm, Pbkdf2Algorithm) fullName.vb: CapyKit.Extensions.ObjectExtensions.UpdateProperties(Of CapyKit.Pbkdf2Algorithm)(CapyKit.Pbkdf2Algorithm, CapyKit.Pbkdf2Algorithm) name.vb: UpdateProperties(Of Pbkdf2Algorithm)(Pbkdf2Algorithm, Pbkdf2Algorithm) spec.csharp: - uid: CapyKit.Extensions.ObjectExtensions.UpdateProperties``1(CapyKit.Pbkdf2Algorithm,CapyKit.Pbkdf2Algorithm) name: UpdateProperties href: CapyKit.Extensions.ObjectExtensions.html#CapyKit_Extensions_ObjectExtensions_UpdateProperties__1___0___0_ - name: < - uid: CapyKit.Pbkdf2Algorithm name: Pbkdf2Algorithm href: CapyKit.Pbkdf2Algorithm.html - name: '>' - name: ( - uid: CapyKit.Pbkdf2Algorithm name: Pbkdf2Algorithm href: CapyKit.Pbkdf2Algorithm.html - name: ',' - name: " " - uid: CapyKit.Pbkdf2Algorithm name: Pbkdf2Algorithm href: CapyKit.Pbkdf2Algorithm.html - name: ) spec.vb: - uid: CapyKit.Extensions.ObjectExtensions.UpdateProperties``1(CapyKit.Pbkdf2Algorithm,CapyKit.Pbkdf2Algorithm) name: UpdateProperties href: CapyKit.Extensions.ObjectExtensions.html#CapyKit_Extensions_ObjectExtensions_UpdateProperties__1___0___0_ - name: ( - name: Of - name: " " - uid: CapyKit.Pbkdf2Algorithm name: Pbkdf2Algorithm href: CapyKit.Pbkdf2Algorithm.html - name: ) - name: ( - uid: CapyKit.Pbkdf2Algorithm name: Pbkdf2Algorithm href: CapyKit.Pbkdf2Algorithm.html - name: ',' - name: " " - uid: CapyKit.Pbkdf2Algorithm name: Pbkdf2Algorithm href: CapyKit.Pbkdf2Algorithm.html - name: ) - uid: System.Object.CapyKit.Extensions.ObjectExtensions.UpdateProperties(System.Object) commentId: M:CapyKit.Extensions.ObjectExtensions.UpdateProperties(System.Object,System.Object) parent: CapyKit.Extensions.ObjectExtensions definition: CapyKit.Extensions.ObjectExtensions.UpdateProperties(System.Object,System.Object) href: CapyKit.Extensions.ObjectExtensions.html#CapyKit_Extensions_ObjectExtensions_UpdateProperties_System_Object_System_Object_ name: UpdateProperties(object, object) nameWithType: ObjectExtensions.UpdateProperties(object, object) fullName: CapyKit.Extensions.ObjectExtensions.UpdateProperties(object, object) nameWithType.vb: ObjectExtensions.UpdateProperties(Object, Object) fullName.vb: CapyKit.Extensions.ObjectExtensions.UpdateProperties(Object, Object) name.vb: UpdateProperties(Object, Object) spec.csharp: - uid: CapyKit.Extensions.ObjectExtensions.UpdateProperties(System.Object,System.Object) name: UpdateProperties href: CapyKit.Extensions.ObjectExtensions.html#CapyKit_Extensions_ObjectExtensions_UpdateProperties_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: CapyKit.Extensions.ObjectExtensions.UpdateProperties(System.Object,System.Object) name: UpdateProperties href: CapyKit.Extensions.ObjectExtensions.html#CapyKit_Extensions_ObjectExtensions_UpdateProperties_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 commentId: N:System isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System nameWithType: System fullName: System - uid: CapyKit.Extensions.ObjectExtensions.UpdateProperties``1(``0,``0) commentId: M:CapyKit.Extensions.ObjectExtensions.UpdateProperties``1(``0,``0) href: CapyKit.Extensions.ObjectExtensions.html#CapyKit_Extensions_ObjectExtensions_UpdateProperties__1___0___0_ name: UpdateProperties(T, T) nameWithType: ObjectExtensions.UpdateProperties(T, T) fullName: CapyKit.Extensions.ObjectExtensions.UpdateProperties(T, T) nameWithType.vb: ObjectExtensions.UpdateProperties(Of T)(T, T) fullName.vb: CapyKit.Extensions.ObjectExtensions.UpdateProperties(Of T)(T, T) name.vb: UpdateProperties(Of T)(T, T) spec.csharp: - uid: CapyKit.Extensions.ObjectExtensions.UpdateProperties``1(``0,``0) name: UpdateProperties href: CapyKit.Extensions.ObjectExtensions.html#CapyKit_Extensions_ObjectExtensions_UpdateProperties__1___0___0_ - name: < - name: T - name: '>' - name: ( - name: T - name: ',' - name: " " - name: T - name: ) spec.vb: - uid: CapyKit.Extensions.ObjectExtensions.UpdateProperties``1(``0,``0) name: UpdateProperties href: CapyKit.Extensions.ObjectExtensions.html#CapyKit_Extensions_ObjectExtensions_UpdateProperties__1___0___0_ - name: ( - name: Of - name: " " - name: T - name: ) - name: ( - name: T - name: ',' - name: " " - name: T - name: ) - uid: CapyKit.Extensions.ObjectExtensions commentId: T:CapyKit.Extensions.ObjectExtensions parent: CapyKit.Extensions href: CapyKit.Extensions.ObjectExtensions.html name: ObjectExtensions nameWithType: ObjectExtensions fullName: CapyKit.Extensions.ObjectExtensions - uid: CapyKit.Extensions.ObjectExtensions.UpdateProperties(System.Object,System.Object) commentId: M:CapyKit.Extensions.ObjectExtensions.UpdateProperties(System.Object,System.Object) isExternal: true href: CapyKit.Extensions.ObjectExtensions.html#CapyKit_Extensions_ObjectExtensions_UpdateProperties_System_Object_System_Object_ name: UpdateProperties(object, object) nameWithType: ObjectExtensions.UpdateProperties(object, object) fullName: CapyKit.Extensions.ObjectExtensions.UpdateProperties(object, object) nameWithType.vb: ObjectExtensions.UpdateProperties(Object, Object) fullName.vb: CapyKit.Extensions.ObjectExtensions.UpdateProperties(Object, Object) name.vb: UpdateProperties(Object, Object) spec.csharp: - uid: CapyKit.Extensions.ObjectExtensions.UpdateProperties(System.Object,System.Object) name: UpdateProperties href: CapyKit.Extensions.ObjectExtensions.html#CapyKit_Extensions_ObjectExtensions_UpdateProperties_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: CapyKit.Extensions.ObjectExtensions.UpdateProperties(System.Object,System.Object) name: UpdateProperties href: CapyKit.Extensions.ObjectExtensions.html#CapyKit_Extensions_ObjectExtensions_UpdateProperties_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: CapyKit.Extensions commentId: N:CapyKit.Extensions href: CapyKit.html name: CapyKit.Extensions nameWithType: CapyKit.Extensions fullName: CapyKit.Extensions spec.csharp: - uid: CapyKit name: CapyKit href: CapyKit.html - name: . - uid: CapyKit.Extensions name: Extensions href: CapyKit.Extensions.html spec.vb: - uid: CapyKit name: CapyKit href: CapyKit.html - name: . - uid: CapyKit.Extensions name: Extensions href: CapyKit.Extensions.html - uid: System.Int32 commentId: T:System.Int32 parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 name: int nameWithType: int fullName: int nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer - uid: CapyKit.Pbkdf2Algorithm.AlgorithmName* commentId: Overload:CapyKit.Pbkdf2Algorithm.AlgorithmName href: CapyKit.Pbkdf2Algorithm.html#CapyKit_Pbkdf2Algorithm_AlgorithmName name: AlgorithmName nameWithType: Pbkdf2Algorithm.AlgorithmName fullName: CapyKit.Pbkdf2Algorithm.AlgorithmName - uid: CapyKit.IPasswordAlgorithm.AlgorithmName commentId: P:CapyKit.IPasswordAlgorithm.AlgorithmName parent: CapyKit.IPasswordAlgorithm href: CapyKit.IPasswordAlgorithm.html#CapyKit_IPasswordAlgorithm_AlgorithmName name: AlgorithmName nameWithType: IPasswordAlgorithm.AlgorithmName fullName: CapyKit.IPasswordAlgorithm.AlgorithmName - uid: System.String commentId: T:System.String parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string name: string nameWithType: string fullName: string nameWithType.vb: String fullName.vb: String name.vb: String - uid: CapyKit.Pbkdf2Algorithm.#ctor* commentId: Overload:CapyKit.Pbkdf2Algorithm.#ctor href: CapyKit.Pbkdf2Algorithm.html#CapyKit_Pbkdf2Algorithm__ctor name: Pbkdf2Algorithm nameWithType: Pbkdf2Algorithm.Pbkdf2Algorithm fullName: CapyKit.Pbkdf2Algorithm.Pbkdf2Algorithm nameWithType.vb: Pbkdf2Algorithm.New fullName.vb: CapyKit.Pbkdf2Algorithm.New name.vb: New - uid: CapyKit.Pbkdf2Algorithm.Encrypt* commentId: Overload:CapyKit.Pbkdf2Algorithm.Encrypt href: CapyKit.Pbkdf2Algorithm.html#CapyKit_Pbkdf2Algorithm_Encrypt_System_String_System_Object___ name: Encrypt nameWithType: Pbkdf2Algorithm.Encrypt fullName: CapyKit.Pbkdf2Algorithm.Encrypt - uid: CapyKit.IPasswordAlgorithm.Encrypt(System.String,System.Object[]) commentId: M:CapyKit.IPasswordAlgorithm.Encrypt(System.String,System.Object[]) parent: CapyKit.IPasswordAlgorithm isExternal: true href: CapyKit.IPasswordAlgorithm.html#CapyKit_IPasswordAlgorithm_Encrypt_System_String_System_Object___ name: Encrypt(string, params object[]) nameWithType: IPasswordAlgorithm.Encrypt(string, params object[]) fullName: CapyKit.IPasswordAlgorithm.Encrypt(string, params object[]) nameWithType.vb: IPasswordAlgorithm.Encrypt(String, ParamArray Object()) fullName.vb: CapyKit.IPasswordAlgorithm.Encrypt(String, ParamArray Object()) name.vb: Encrypt(String, ParamArray Object()) spec.csharp: - uid: CapyKit.IPasswordAlgorithm.Encrypt(System.String,System.Object[]) name: Encrypt href: CapyKit.IPasswordAlgorithm.html#CapyKit_IPasswordAlgorithm_Encrypt_System_String_System_Object___ - name: ( - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - name: params - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: '[' - name: ']' - name: ) spec.vb: - uid: CapyKit.IPasswordAlgorithm.Encrypt(System.String,System.Object[]) name: Encrypt href: CapyKit.IPasswordAlgorithm.html#CapyKit_IPasswordAlgorithm_Encrypt_System_String_System_Object___ - name: ( - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - name: ParamArray - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ( - name: ) - name: ) - uid: System.Object[] 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() spec.csharp: - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: '[' - name: ']' spec.vb: - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ( - name: ) - uid: System.Byte[] isExternal: true href: https://learn.microsoft.com/dotnet/api/system.byte name: byte[] nameWithType: byte[] fullName: byte[] nameWithType.vb: Byte() fullName.vb: Byte() name.vb: Byte() spec.csharp: - uid: System.Byte name: byte isExternal: true href: https://learn.microsoft.com/dotnet/api/system.byte - name: '[' - name: ']' spec.vb: - uid: System.Byte name: Byte isExternal: true href: https://learn.microsoft.com/dotnet/api/system.byte - name: ( - name: )