예제 #1
0
 public bool Decrypt()
 {
     try
     {
         FIO = ClassCrypt.Decrypt(FIO);
         return(true);
     }
     catch { return(false); }
 }
예제 #2
0
 public bool Decrypt()
 {
     try
     {
         Work = ClassCrypt.Decrypt(Work);
         return(true);
     }
     catch { return(false); }
 }
예제 #3
0
 public bool Decrypt()
 {
     try
     {
         NamePunkt = ClassCrypt.Decrypt(NamePunkt);
         return(true);
     }
     catch { return(false); }
 }
예제 #4
0
 public bool Decrypt()
 {
     try
     {
         Text = ClassCrypt.Decrypt(Text);
         return(true);
     }
     catch { return(false); }
 }
예제 #5
0
 public override bool  Decrypt()
 {
     try
     {
         Source = ClassCrypt.Decrypt(Source);
         base.Decrypt();
         return(true);
     }
     catch { return(false); }
 }
예제 #6
0
 public bool Decrypt()
 {
     try
     {
         Name        = ClassCrypt.Decrypt(Name);
         Description = ClassCrypt.Decrypt(Description);
         return(true);
     }
     catch { return(false); }
 }
예제 #7
0
 public bool Decrypt()
 {
     try
     {
         Currency = ClassCrypt.Decrypt(Currency);
         Storage  = ClassCrypt.Decrypt(Storage);
         return(true);
     }
     catch { return(false); }
 }
예제 #8
0
        public bool Decrypt()
        {
            try
            {
                System = ClassCrypt.Decrypt(System);
                Number = ClassCrypt.Decrypt(Number);

                return(true);
            }
            catch { return(false); }
        }
예제 #9
0
 public bool Decrypt()
 {
     try
     {
         Currency = ClassCrypt.Decrypt(Currency);
         Creditor = ClassCrypt.Decrypt(Creditor);
         Debtor   = ClassCrypt.Decrypt(Debtor);
         return(true);
     }
     catch { return(false); }
 }
예제 #10
0
 public virtual bool  Decrypt()
 {
     try
     {
         Currency = ClassCrypt.Decrypt(Currency);
         Category = ClassCrypt.Decrypt(Category);
         Name     = ClassCrypt.Decrypt(Name);
         return(true);
     }
     catch { return(false); }
 }
예제 #11
0
 public bool Decrypt()
 {
     try
     {
         Name  = ClassCrypt.Decrypt(Name);
         Pass  = ClassCrypt.Decrypt(Pass);
         Link  = ClassCrypt.Decrypt(Link);
         Login = ClassCrypt.Decrypt(Login);
         return(true);
     }
     catch { return(false); }
 }
예제 #12
0
 public bool Decrypt()
 {
     try
     {
         Description = ClassCrypt.Decrypt(Description);
         foreach (StepSheduleDay day in SheduleDays)
         {
             day.Decrypt();
         }
         return(true);
     }
     catch { return(false); }
 }
예제 #13
0
 public bool Decrypt()
 {
     try
     {
         NameProject = ClassCrypt.Decrypt(NameProject);
         Description = ClassCrypt.Decrypt(Description);
         foreach (ProjectStep step in ProjectSteps)
         {
             step.Decrypt();
         }
         return(true);
     }
     catch { return(false); }
 }
예제 #14
0
        public bool Decrypt()
        {
            try
            {
                NamePlan = ClassCrypt.Decrypt(NamePlan);
                foreach (PunktOfPlan punkt in punktOfPlans)
                {
                    punkt.Decrypt();
                }

                return(true);
            }
            catch { return(false); }
        }
예제 #15
0
 public bool Decrypt()
 {
     try
     {
         Name = ClassCrypt.Decrypt(Name);
         Text = ClassCrypt.Decrypt(Text);
         for (int i = 0; i < keyWords.Count; i++)
         {
             keyWords[i] = ClassCrypt.Decrypt(keyWords[i]);
         }
         return(true);
     }
     catch { return(false); }
 }
예제 #16
0
 public bool Decrypt()
 {
     try
     {
         NameTarget        = ClassCrypt.Decrypt(NameTarget);
         DescriptionTarget = ClassCrypt.Decrypt(DescriptionTarget);
         foreach (Step step in Steps)
         {
             step.Decrypt();
         }
         return(true);
     }
     catch { return(false); }
 }
예제 #17
0
        public bool Decrypt()
        {
            try
            {
                Name        = ClassCrypt.Decrypt(Name);
                Description = ClassCrypt.Decrypt(Description);
                Category    = ClassCrypt.Decrypt(Category);

                for (int i = 0; i < KeyWords.Count; i++)
                {
                    KeyWords[i] = ClassCrypt.Decrypt(KeyWords[i]);
                }
                return(true);
            }
            catch { return(false); }
        }
예제 #18
0
 /// <summary>
 /// Дешифрование
 /// </summary>
 /// <returns></returns>
 public bool Decrypt()
 {
     try
     {
         calendar.Decrypt();
         diary.Decrypt();
         finansialAssistant.Decrypt();
         information.Decrypt();
         notes.Decrypt();
         photo.Decrypt();
         plants.Decrypt();
         routineDay.Decrypt();
         test = ClassCrypt.Decrypt(test);
         return(true);
     }
     catch { return(false); }
 }
예제 #19
0
 public bool Decrypt()
 {
     try
     {
         Name        = ClassCrypt.Decrypt(Name);
         LastName    = ClassCrypt.Decrypt(LastName);
         SurName     = ClassCrypt.Decrypt(SurName);
         Interests   = ClassCrypt.Decrypt(Interests);
         Description = ClassCrypt.Decrypt(Description);
         foreach (Kontact kontact in Kontacts)
         {
             kontact.Decrypt();
         }
         AdditionalInformation   = ClassCrypt.Decrypt(AdditionalInformation);
         FamilyStatus            = ClassCrypt.Decrypt(FamilyStatus);
         EducationLevel          = ClassCrypt.Decrypt(EducationLevel);
         EducatonLocationAndSpec = ClassCrypt.Decrypt(EducatonLocationAndSpec);
         WorkPlace    = ClassCrypt.Decrypt(WorkPlace);
         WorkPosition = ClassCrypt.Decrypt(WorkPosition);
         return(true);
     }
     catch { return(false); }
 }
예제 #20
0
 /// <summary>
 /// Проверка правильности введенного ключа шифрования
 /// </summary>
 /// <returns>Истина, если все правильно</returns>
 public bool CryptKeyTest()
 {
     return(ClassCrypt.Decrypt(test) == getTestString());
 }