/// <summary>
 /// Cifra los datos y devuelve un objeto que permite guardar los datos cifrados.
 /// </summary>
 /// <returns>Instancia de <see cref="ISecureStorage"/> que le permite guardar la información en un archivo.</returns>
 public ISecureStorage Encrypt()
 {
     this.ApiKey    = CryptoHelper.ProtectString(this.ApiKey, this.entropy);
     this.ApiSecret = CryptoHelper.ProtectString(this.ApiSecret, this.entropy);
     return(this);
 }