CrypterEnvironment Class | CryptSharp |
Lets you customize the list of crypt algorithms your program will accept.
Inheritance Hierarchy
Namespace: CryptSharp
Assembly: CryptSharp (in CryptSharp.dll) Version: 2.1.0.0
Syntax
public class CrypterEnvironment
Public Class CrypterEnvironment
public ref class CrypterEnvironment
type CrypterEnvironment = class end
The CrypterEnvironment type exposes the following members.
Constructors
Name | Description | |
---|---|---|
CrypterEnvironment | Initializes a new instance of the CrypterEnvironment class |
Methods
Name | Description | |
---|---|---|
CheckPassword(Byte, String) |
Checks if the crypted password matches the given password bytes.
| |
CheckPassword(String, String) |
Checks if the crypted password matches the given password string.
| |
GetCrypter |
Searches for a crypt algorithm compatible with the specified crypted password or prefix.
| |
MakeReadOnly |
Prevents future changes to the environment.
| |
TryGetCrypter |
Searches for a crypt algorithm compatible with the specified crypted password or prefix,
|
Properties
Name | Description | |
---|---|---|
Crypters |
The collection of crypters in this environment.
| |
Default |
The default environment.
| |
IsReadOnly | true if the environment cannot be changed.
|
See Also