You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GetRandomAdminPassword refactored as GetRandomPasswordWithPrefix generates a random password string that always starts with a required prefix (prefix can be provided or left blank as the function uses default prefix - "A1a"). The random password generated is of 15 character with the mix of uppercase, lowercase, numbers and url safe characters. It calls on to RandomStringGenerator which returns a cryptographically-secure random string of the given length, where each character is sampled uniformly at random from characterSet. (#1103) (bf36785)