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

com.netgrif.application.engine.security.service.IEncryptionService Maven / Gradle / Ivy

package com.netgrif.application.engine.security.service;

public interface IEncryptionService {

    String encrypt(String value);

    String encrypt(String value, String algorithm);

    String decrypt(String value);

    String decrypt(String value, String algorithm);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy