using Xamarin.Forms;
using TINK.Model.Device;
using System;
[assembly: Dependency(typeof(TINK.iOS.Device.IOSCipher))]
namespace TINK.iOS.Device
{
public class IOSCipher : ICipher
{
/// Encrypt data.
/// Key to encrypt data.
/// Data to entrycpt.
///
public byte[] Encrypt(byte[] key, byte[] clear)
{
throw new NotSupportedException();
}
/// Decrypt data.
/// Key to decrypt data with.
/// Encrpyted data to decrypt.
/// Decrypted data.
public byte[] Decrypt(byte[] key, byte[] encrypted)
{
throw new NotSupportedException();
}
}
}