예제 #1
0
 public string EncryptPassword()
 {
     if (string.IsNullOrEmpty(_password))
     {
         return(null);
     }
     return(CryptUtil.EncryptRedditPassword(_password, ConfigurationManager.AppSettings["CryptSharedSecret"]));
 }