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

org.solovyev.common.security.SecurityService Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
package org.solovyev.common.security;

import org.jetbrains.annotations.NotNull;

/**
 * User: serso
 * Date: 8/20/12
 * Time: 8:22 PM
 */
public interface SecurityService {

    @NotNull
    SaltGenerator getSaltGenerator();

    @NotNull
    SecretKeyProvider getSecretKeyProvider();

    @NotNull
    HashProvider getHashProvider();

    @NotNull
    Cipherer getCipherer();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy