Esempio n. 1
0
        public string Validate()
        {
            if (StoragePath.IndexOfAny(Path.GetInvalidPathChars()) != -1)
            {
                return("Invalid storage path");
            }

            if (!KeyParser.Validate(AntiKeyProtection))
            {
                return("Invalid protected keys value");
            }

            return(string.Empty);
        }