Interface IEncryptionAlgorithm
Namespace: CapyKit.Helpers
Assembly: CapyKit.dll
Syntax
public interface IEncryptionAlgorithm
Properties
AlgorithmName
Declaration
string AlgorithmName { get; }
Property Value
| Type | Description |
|---|---|
| string |
Methods
Decrypt<T>(EncryptedValue<T>, params object[])
Declaration
T Decrypt<T>(EncryptedValue<T> encryptedValue, params object[] args)
Parameters
| Type | Name | Description |
|---|---|---|
| EncryptedValue<T> | encryptedValue | |
| object[] | args |
Returns
| Type | Description |
|---|---|
| T |
Type Parameters
| Name | Description |
|---|---|
| T |
Encrypt<T>(object, params object[])
Declaration
EncryptedValue<T> Encrypt<T>(object obj, params object[] args)
Parameters
| Type | Name | Description |
|---|---|---|
| object | obj | |
| object[] | args |
Returns
| Type | Description |
|---|---|
| EncryptedValue<T> |
Type Parameters
| Name | Description |
|---|---|
| T |