B4A Library Strong Password Generator

I worked on this library for an application and i want to share...

Strong password Generator generates random password with your desired length, lowercase letters, uppercase letters, numbers and symbols.

Its very easy to implement as well

B4X:
Dim myPass As mcStrongPasswordGenerator

'Initialise with: length, lowercaseAZ, uppercaseAZ, numbers09, symbols
myPass.Initialize(10,True,True,True,True)

log(myPass.generatePassword)
 

Attachments

  • mcStrongPassGenerator.zip
    11.8 KB · Views: 610
  • mcStrongPasswordGenerator.zip
    1,012 bytes · Views: 601
Top