Slight change since we are also making passwords. Do not use letters which are commonly misunderstood when written / printed. Only use easily defined characters.

This commit is contained in:
Tim Young 2017-08-01 11:40:37 -05:00
parent 261d398e53
commit 29adb227c9
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ namespace EduNetworkBuilder
/// <summary>
/// The characters we use for passwords and salts.
/// </summary>
protected const string PWChars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890_.!#$^*";
protected const string PWChars = "abcdefghijkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ234567890_.!#$^*";
public TrippleDESDocumentEncryption(XmlDocument Doc, TripleDES Key)
{