C# 클래스 gov.va.medora.mdws.bse.SSTCryptographer

파일 보기 프로젝트 열기: OSEHRA/mdws 1 사용 예제들

공개 메소드들

메소드 설명
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