Back to project page PasswordGen-LibGDX.
The source code is released under:
GNU General Public License
If you think the Android project PasswordGen-LibGDX listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.mygdx.generation; public class PasswordCharacters { protected char[] lowerCaseCharacters = {'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'}; protected char[] upperCaseCharacters = {'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'}; protected char[] numberCharacters = {'0','1','2','3','4','5','6','7','8','9'}; protected char[] specialCharacters = {'-','_','@','*','^','%','$','?','<','>'}; }