C# Class PerplexMail.EncryptionResult

The results of the encryption operation. Consult the properties to read each part of the encrypted string. To combine the EncryptionResult object into a single hash string, simply call .ToString().
显示文件 Open project: PerplexInternetmarketing/PerplexMail-for-Umbraco Class Usage Examples

Public Methods

Method Description
EncryptionResult ( string secureString ) : System

EncryptionResult ( string salt, string cipherText ) : System

ToString ( ) : string

Generates a single hash string that contains the method and the salt to generate the hash.

Method Details

EncryptionResult() public method

public EncryptionResult ( string secureString ) : System
secureString string
return System

EncryptionResult() public method

public EncryptionResult ( string salt, string cipherText ) : System
salt string
cipherText string
return System

ToString() public method

Generates a single hash string that contains the method and the salt to generate the hash.
public ToString ( ) : string
return string