From 29adb227c9084f7fbe85a3de7f1cb08adbaf58ec Mon Sep 17 00:00:00 2001 From: Tim Young Date: Tue, 1 Aug 2017 11:40:37 -0500 Subject: [PATCH] Slight change since we are also making passwords. Do not use letters which are commonly misunderstood when written / printed. Only use easily defined characters. --- EduNetworkBuilder/TrippleDESDocumentEncryption.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EduNetworkBuilder/TrippleDESDocumentEncryption.cs b/EduNetworkBuilder/TrippleDESDocumentEncryption.cs index d375c6f..1d34709 100644 --- a/EduNetworkBuilder/TrippleDESDocumentEncryption.cs +++ b/EduNetworkBuilder/TrippleDESDocumentEncryption.cs @@ -20,7 +20,7 @@ namespace EduNetworkBuilder /// /// The characters we use for passwords and salts. /// - protected const string PWChars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890_.!#$^*"; + protected const string PWChars = "abcdefghijkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ234567890_.!#$^*"; public TrippleDESDocumentEncryption(XmlDocument Doc, TripleDES Key) {