Skip to content

Commit

Permalink
Update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
djvelimir committed Oct 16, 2022
1 parent a7c3ade commit b86401a
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions Services/PasswordGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,15 @@ public class PasswordGenerator : IPasswordGenerator
SPECIAL_CHARACTERS;
private static readonly Random random = new Random();

/**
* Generate random password
* Generated password length is 16
* Generated password contains at least one uppercase character
* Generated password contains at least one lowercase character
* Generated password contains at least one digit character
* Generated password contains at least one special character
*
* @return generated password
*/
/// <summary>
/// Generate random password
/// Generated password length is 16
/// Generated password contains at least one uppercase character
/// Generated password contains at least one lowercase character
/// Generated password contains at least one digit character
/// Generated password contains at least one special character
/// </summary>
/// <returns>Generated password</returns>
public String Generate()
{
var stringBuilder = new StringBuilder();
Expand Down

0 comments on commit b86401a

Please sign in to comment.