aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.WiFi
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-08-28 16:35:16 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-08-28 16:35:16 +0300
commitf3fc87dd10b3d55591a84ecbfb0612769f0c09b9 (patch)
tree640621ab876dd5368d91e44b07b4f2872752e5bb /Software/Visual_Studio/Tango.WiFi
parent37fe17f09478a486dcd51f0edd8028724dc85c16 (diff)
downloadTango-f3fc87dd10b3d55591a84ecbfb0612769f0c09b9.tar.gz
Tango-f3fc87dd10b3d55591a84ecbfb0612769f0c09b9.zip
Working on BL Builders !
Working on making PPC work with builders..
Diffstat (limited to 'Software/Visual_Studio/Tango.WiFi')
-rw-r--r--Software/Visual_Studio/Tango.WiFi/AuthRequest.cs1
-rw-r--r--Software/Visual_Studio/Tango.WiFi/EapUserFactory.cs2
-rw-r--r--Software/Visual_Studio/Tango.WiFi/ProfileFactory.cs1
3 files changed, 0 insertions, 4 deletions
diff --git a/Software/Visual_Studio/Tango.WiFi/AuthRequest.cs b/Software/Visual_Studio/Tango.WiFi/AuthRequest.cs
index bb40591d2..5ef181085 100644
--- a/Software/Visual_Studio/Tango.WiFi/AuthRequest.cs
+++ b/Software/Visual_Studio/Tango.WiFi/AuthRequest.cs
@@ -58,7 +58,6 @@ namespace Tango.WiFi
{
get
{
- #warning Robin: Not sure that Enterprise networks have the same requirements on the password complexity as standard ones.
return PasswordHelper.IsValid(_password, _network.dot11DefaultCipherAlgorithm);
}
}
diff --git a/Software/Visual_Studio/Tango.WiFi/EapUserFactory.cs b/Software/Visual_Studio/Tango.WiFi/EapUserFactory.cs
index 26f5c1852..d29941200 100644
--- a/Software/Visual_Studio/Tango.WiFi/EapUserFactory.cs
+++ b/Software/Visual_Studio/Tango.WiFi/EapUserFactory.cs
@@ -15,8 +15,6 @@ namespace Tango.WiFi
/// </summary>
internal static string Generate(Dot11CipherAlgorithm cipher, string username, string password, string domain)
{
- #warning Robin: Probably not properly implemented, only supports WPA- and WPA-2 Enterprise with PEAP-MSCHAPv2
-
string profile = string.Empty;
string template = string.Empty;
diff --git a/Software/Visual_Studio/Tango.WiFi/ProfileFactory.cs b/Software/Visual_Studio/Tango.WiFi/ProfileFactory.cs
index ca9b3740b..3905f46e9 100644
--- a/Software/Visual_Studio/Tango.WiFi/ProfileFactory.cs
+++ b/Software/Visual_Studio/Tango.WiFi/ProfileFactory.cs
@@ -46,7 +46,6 @@ namespace Tango.WiFi
}
break;
case Dot11CipherAlgorithm.TKIP:
- #warning Robin: Not sure WPA uses RSNA
if (authAlgo == Dot11AuthAlgorithm.RSNA)
{
template = GetTemplate("WPA-Enterprise-PEAP-MSCHAPv2");