All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.gatling.recorder.internal.bouncycastle.crypto.SecureRandomProvider Maven / Gradle / Ivy

package io.gatling.recorder.internal.bouncycastle.crypto;

import java.security.SecureRandom;

/**
 * Source provider for SecureRandom implementations.
 */
public interface SecureRandomProvider
{
    /**
     * Return a SecureRandom instance.
     * @return a SecureRandom
     */
    SecureRandom get();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy