summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/imagemaster/util/RandomString.java
blob: fc4f9d349ab7a68ef66655d7105e8227c9a206f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package org.openslx.imagemaster.util;

import java.security.SecureRandom;

/**
 * Generate secure random strings
 * 
 */
public class RandomString
{
	private static final String lettersSpecial = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890+-$%&/()=?@";
	private static final String letters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
	private static final SecureRandom random = new SecureRandom();

	/**
	 * Generate a random string.
	 * 
	 * @param length the length of the string
	 * @param specialChars whether to use special charachters or not
	 * @return the generated string
	 */
	public static String generate( int length, boolean specialChars )
	{
		String used = ( specialChars ) ? lettersSpecial : letters;
		String result = "";
		for ( int i = 0; i < length; i++ ) {
			int index = (int) ( random.nextDouble() * used.length() );
			result += used.substring( index, index + 1 );
		}
		return result;
	}
}