Utility Methods
Get access to several security-focused methods to assist in your security journey.
Generating Passwords
// Generate a random password 32 characters in length
cbsecure().createPassword()
// Generate with no symbols and 16 characters
cbsecure().createPassword( length: 16, symbols: false )
// Generate with no numbers and 12 characters
cbsecure().createPassword( length: 12, numbers: false )The Real Slim Shady!
Last updated
Was this helpful?