using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Core.Cryptography
{
///
/// Represents an encryption engine.
///
public interface IEncryptor
{
///
/// Encrypts the specified text using the built-in static key.
///
/// The text.
///
String Encrypt(String text);
///
/// Encrypts the specified text using the specified pass key.
///
/// The text.
/// The key.
///
String Encrypt(String text, String key);
}
}