/// <summary>
            /// Reset
            /// </summary>
            public void reset()
            {
                this.tempAssetBundlesFolderPath = "Assets/AssetBundles";
                this.tempEncryptedFolderPath    = "Assets/Encrypted";

                this.encryptedAssetBundlePrefix = "encrypted/";
                this.useEncryption = true;
                this.cryptoVersion = CryptoVersion.Ver1_depricated;

                this.password = "******";
            }
 /// <summary>
 /// Is crypto version deprecated
 /// </summary>
 /// <returns>deprecated</returns>
 // -----------------------------------------------------------------------------------------------------------
 public static bool IsCryptoVersionDeprecated(CryptoVersion cryptoVersion)
 {
     return(cryptoVersion == CryptoVersion.Ver1_depricated);
 }