Generates a random password for the user.

Syntax

XIH.Password(length)
XIH.Password(letters, length)
XIH.Password(seed, length)
XIH.Password(seed, letters, length)

Parameters

Parameter

Data type

Description

Sample

length

int

Length of the password

"10"

letters

string

Letters that the password is made off

"ABC"

seed

int

A number from which the password is generated from so that it is recreatable 

"32"

Remarks

Be careful with the length it can get out of hand fast.

Returns a string.

Examples

XIH.Password(32,"ABC",10)