Interface ICryptoHelper
Namespace: BoldReports.Web
Assembly: BoldReports.Web.dll
Syntax
public interface ICryptoHelper
Methods
DecryptData(String)
Decrypts the given encrypted data string.
Declaration
string DecryptData(string encryptedData)
Parameters
Type | Name | Description |
---|---|---|
System.String | encryptedData | The encrypted string to be decrypted. |
Returns
Type | Description |
---|---|
System.String | A string representing the original plain text data. |
EncryptData(String)
Encrypts the provided data string.
Declaration
string EncryptData(string data)
Parameters
Type | Name | Description |
---|---|---|
System.String | data | The plain text data to be encrypted. |
Returns
Type | Description |
---|---|
System.String | A string representing the encrypted data. |