메소드 | 설명 | |
---|---|---|
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 |
public static Decrypt ( string strEncrypted ) : string | ||
strEncrypted | string | The string to be decrypted. |
리턴 | string |
public static Decrypt ( string strEncrypted, string strKey ) : string | ||
strEncrypted | string | The string to be decrypted. |
strKey | string | The decryption key. |
리턴 | string |
public static Encrypt ( string strToEncrypt ) : string | ||
strToEncrypt | string | The string to be encrypted. |
리턴 | string |
public static Encrypt ( string strToEncrypt, string strKey ) : string | ||
strToEncrypt | string | The string to be encrypted. |
strKey | string | The encryption key. |
리턴 | string |