C# Class gov.va.medora.mdws.bse.SSTCryptographer

Mostrar archivo Open project: OSEHRA/mdws Class Usage Examples

Public Methods

Method Description
Decrypt ( string strEncrypted ) : string

Decrypt the given string using the default key.

Decrypt ( string strEncrypted, string strKey ) : string

Decrypt the given string using the specified key.

Encrypt ( string strToEncrypt ) : string

Encrypt the given string using the default key.

Encrypt ( string strToEncrypt, string strKey ) : string

Encrypt the given string using the specified key.

SSTCryptographer ( ) : System

Method Details

Decrypt() public static method

Decrypt the given string using the default key.
public static Decrypt ( string strEncrypted ) : string
strEncrypted string The string to be decrypted.
return string

Decrypt() public static method

Decrypt the given string using the specified key.
public static Decrypt ( string strEncrypted, string strKey ) : string
strEncrypted string The string to be decrypted.
strKey string The decryption key.
return string

Encrypt() public static method

Encrypt the given string using the default key.
public static Encrypt ( string strToEncrypt ) : string
strToEncrypt string The string to be encrypted.
return string

Encrypt() public static method

Encrypt the given string using the specified key.
public static Encrypt ( string strToEncrypt, string strKey ) : string
strToEncrypt string The string to be encrypted.
strKey string The encryption key.
return string

SSTCryptographer() public method

public SSTCryptographer ( ) : System
return System