Skip to content

Commit

Permalink
Merge pull request #15 from PandaTechAM/development
Browse files Browse the repository at this point in the history
Remove & symbol from password generation
  • Loading branch information
ruboarm authored Mar 6, 2024
2 parents 6bcd328 + 823881d commit d9838de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Pandatech.Crypto/Pandatech.Crypto.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Copyright>MIT</Copyright>
<PackageIcon>pandatech.png</PackageIcon>
<PackageReadmeFile>Readme.md</PackageReadmeFile>
<Version>2.2.10</Version>
<Version>2.2.11</Version>
<Title>Pandatech.Crypto</Title>
<PackageTags>Pandatech, library, encryption, hash, algorythms, security</PackageTags>
<Description>PandaTech.Crypto is a .NET library simplifying common cryptograhic functions.</Description>
Expand Down
2 changes: 1 addition & 1 deletion src/Pandatech.Crypto/Password.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public static class Password
private const string UppercaseChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
private const string LowercaseChars = "abcdefghijklmnopqrstuvwxyz";
private const string DigitChars = "0123456789";
private const string SpecialChars = "!@#$%^&*()-_=+[]{}|;:,.<>?";
private const string SpecialChars = "!@#$%^*()-_=+[]{}|;:,.<>?";

public static string GenerateRandom(int length, bool includeUppercase, bool includeLowercase, bool includeDigits,
bool includeSpecialChars)
Expand Down

0 comments on commit d9838de

Please sign in to comment.