Example #1
0
def pwd_random(creds):
    """
    generating a random password
  """
    pwd = Credential.pwd_random(creds)
    return pwd
Example #2
0
 def randomPwdGenerate(self):
     """
   Function to generate random password
 """
     random = Credential.pwd_random()
     self.assertTrue(random)