public class CryptoTools
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
generatePassword(int len)
Generates and returns a password
|
static java.lang.String |
generatePassword(int len,
int maxSpecialChars) |
static java.lang.String |
generatePassword(int len,
int maxSpecialChars,
netrexx.lang.Rexx chars) |
static java.lang.String |
generatePasswordCharsAndNumbersOnly(int len)
Generates and returns a password containing only of numbers and letters
(excluding O, I, L, 0 and 1 which can easily be mistaken for one another).
|
static java.lang.String |
generatePasswordCharsOnly(int len)
Generates and returns a password containing only of letters
(excluding O, I and L which can easily be mistaken for 0 and 1).
|
static java.lang.String |
generatePasswordNumsOnly(int len)
Generates and returns a password containing only of numbers.
|
static java.util.Random |
getRandom()
Returns a Random for generating random numbers for usage in a shared
or unshared scenario.
|
static java.security.SecureRandom |
getSharedSecureRandom()
Returns a shared SecureRandom object.
|
static java.security.SecureRandom |
getUnsharedSecureRandom()
Returns an unshared SecureRandom object.
|
static void |
setUniqueKeyModifier(int l)
Sets a unique key modifier (i.e. a salt) for subsequently generating a unique key via
uniqueKey() |
static long |
uniqueKey()
A Keymaker algorithm for calculating a unique key using the previously set unique key identifier (or a default one)
|
public static void setUniqueKeyModifier(int l)
uniqueKey()
l
- an int to use as unique key modifierpublic static long uniqueKey()
public static java.security.SecureRandom getSharedSecureRandom()
public static java.security.SecureRandom getUnsharedSecureRandom()
getSharedSecureRandom()
public static java.util.Random getRandom()
public static java.lang.String generatePassword(int len)
len
- the length of the desired passwordmaxSpecialChars
- the maximum number of special characters to be contained in the generated passwordchars
- the selection of characters to be used for the password to be generatedpublic static java.lang.String generatePassword(int len, int maxSpecialChars)
public static java.lang.String generatePassword(int len, int maxSpecialChars, netrexx.lang.Rexx chars)
public static java.lang.String generatePasswordNumsOnly(int len)
len
- the length of the desired passwordpublic static java.lang.String generatePasswordCharsOnly(int len)
len
- the length of the desired passwordpublic static java.lang.String generatePasswordCharsAndNumbersOnly(int len)
len
- the length of the desired passwordCopyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.