using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Core.Cryptography
{
///
/// Represents a decryption engine.
///
public interface IDecryptor
{
///
/// Decrypts the specified text using the built-in static key.
///
/// The text.
///
String Decrypt(String text);
///
/// Decrypts the specified text using the specified pass key.
///
/// The text.
/// The key.
///
String Decrypt(String text, String key);
}
}