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

com.payneteasy.superfly.spisupport.SaltGenerator Maven / Gradle / Ivy

package com.payneteasy.superfly.spisupport;

/**
 * Generator for salts. It's intended to generate a new value on each call.
 *
 * @author Roman Puchkovskiy
 */
public interface SaltGenerator {
    /**
     * Generates a random salt value.
     *
     * @return salt value
     */
    String generate();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy