Exemplo n.º 1
0
        public AesCryptorService CreateCryptService(string Key)
        {
            if (string.IsNullOrEmpty(Key))
            {
                return(this._aes);
            }

            this.Key      = Key;
            this._aes     = new AesCryptorService();
            this._aes.Key = this.Key;
            return(this._aes);
        }