diff --git a/Assets/Mirror/Core/Transport.cs b/Assets/Mirror/Core/Transport.cs
index 7e0716d48..7f488ebf3 100644
--- a/Assets/Mirror/Core/Transport.cs
+++ b/Assets/Mirror/Core/Transport.cs
@@ -36,6 +36,12 @@ public abstract class Transport : MonoBehaviour
/// Is this transport available in the current platform?
public abstract bool Available();
+ /// Is this transported encrypted for secure communication?
+ public virtual bool IsEncrypted => false;
+
+ /// If encrypted, which cipher is used?
+ public virtual string EncryptionCipher => "";
+
// client //////////////////////////////////////////////////////////////
/// Called by Transport when the client connected to the server.
public Action OnClientConnected;