using System; using ShareeBike.Model.Device; using Xamarin.Forms; [assembly: Dependency(typeof(ShareeBike.iOS.Device.IOSCipher))] namespace ShareeBike.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(); } } }