mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
13 lines
249 B
C#
13 lines
249 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
using DnDns.Query;
|
|||
|
|
|
|||
|
|
namespace DnDns.Security
|
|||
|
|
{
|
|||
|
|
public interface IMessageSecurityProvider
|
|||
|
|
{
|
|||
|
|
DnsQueryRequest SecureMessage(DnsQueryRequest dnsQueryRequest);
|
|||
|
|
}
|
|||
|
|
}
|