com.zoomlion.cloud.common.crypto.RandomNumberGenerator Maven / Gradle / Ivy
The newest version!
package com.zoomlion.cloud.common.crypto;
/**
* A component that can generate random number/byte values as needed. Useful in cryptography or security scenarios
* where random byte arrays are needed, such as for password salts, nonces, initialization vectors and other seeds.
*
* This is essentially the same as a {@link java.security.SecureRandom SecureRandom}, and indeed implementations
* of this interface will probably all use {@link java.security.SecureRandom SecureRandom} instances, but this
* interface provides a few additional benefits to end-users:
*
* - It is an interface rather than the JDK's {@code SecureRandom} concrete implementation. Implementation details
* can be customized as necessary based on the application's needs
* - Default per-instance behavior can be customized on implementations, typically via JavaBeans mutators.
* - Perhaps most important for Shiro end-users, tt can more easily be used as a source of cryptographic seed data,
* and the data returned is already in a more convenient {@link ByteSource ByteSource} format in case that data needs
* to be {@link com.zoomlion.cloud.common.crypto.ByteSource#toHex() hex} or
* {@link com.zoomlion.cloud.common.crypto.ByteSource#toBase64() base64}-encoded.
*
* For example, consider the following example generating password salts for new user accounts:
*
* RandomNumberGenerator saltGenerator = new {@link com.zoomlion.cloud.common.crypto.SecureRandomNumberGenerator SecureRandomNumberGenerator}();
* User user = new User();
* user.setPasswordSalt(saltGenerator.nextBytes().toBase64());
* userDAO.save(user);
*
*
* @since 1.1
*/
public interface RandomNumberGenerator {
/**
* Generates a byte array of fixed length filled with random data, often useful for generating salts,
* initialization vectors or other seed data. The length is specified as a configuration
* value on the underlying implementation.
*
* If you'd like per-invocation control the number of bytes generated, use the
* {@link #nextBytes(int) nextBytes(int)} method instead.
*
* @return a byte array of fixed length filled with random data.
* @see #nextBytes(int)
*/
ByteSource nextBytes();
/**
* Generates a byte array of the specified length filled with random data.
*
* @param numBytes the number of bytes to be populated with random data.
* @return a byte array of the specified length filled with random data.
* @see #nextBytes()
*/
ByteSource nextBytes(int numBytes);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy