using JdeScoping.Core.Models.Auth;
namespace JdeScoping.Client.Services;
///
/// Service for encrypting data using server's RSA public key.
///
public interface ICryptoService
{
///
/// Encrypts login credentials for transmission to server.
///
/// Login credentials to encrypt
/// Base64-encoded encrypted data
Task EncryptLoginAsync(LoginModel model);
}