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

Afficher le fichier Open project: OSEHRA/mdws Class Usage Examples

Méthodes publiques

Méthode 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 méthode

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

Decrypt() public static méthode

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.
Résultat string

Encrypt() public static méthode

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

Encrypt() public static méthode

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.
Résultat string

SSTCryptographer() public méthode

public SSTCryptographer ( ) : System
Résultat System