C# Класс gov.va.medora.mdws.bse.SSTCryptographer

Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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

Описание методов

Decrypt() публичный статический Метод

Decrypt the given string using the default key.
public static Decrypt ( string strEncrypted ) : string
strEncrypted string The string to be decrypted.
Результат string

Decrypt() публичный статический Метод

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.
Результат string

Encrypt() публичный статический Метод

Encrypt the given string using the default key.
public static Encrypt ( string strToEncrypt ) : string
strToEncrypt string The string to be encrypted.
Результат string

Encrypt() публичный статический Метод

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.
Результат string

SSTCryptographer() публичный Метод

public SSTCryptographer ( ) : System
Результат System