コード例 #1
0
ファイル: Encryption.cs プロジェクト: 0xE232FE/OGameOneAdmin
 public static string DecryptString(string sCipherText, string sPassPhrase, string sSaltValue)
 {
     return(SecureLibAccess.DecryptString(sCipherText, sPassPhrase, sSaltValue));
 }
コード例 #2
0
ファイル: Encryption.cs プロジェクト: 0xE232FE/OGameOneAdmin
 public static string DecryptString(string sCipherText, string sPassword)
 {
     return(SecureLibAccess.DecryptString(sCipherText, sPassword));
 }
コード例 #3
0
ファイル: Encryption.cs プロジェクト: 0xE232FE/OGameOneAdmin
 public static string DecryptString(string sCipherText)
 {
     return(SecureLibAccess.DecryptString(sCipherText));
 }