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

com.payneteasy.superfly.password.PlaintextPasswordEncoder Maven / Gradle / Ivy

There is a newer version: 1.7-32
Show newest version
package com.payneteasy.superfly.password;

/**
 * Dummy encoder which does not actually encode anything. Note, however, that
 * salt will be appended to the password if supplied.
 * 
 * @author Roman Puchkovskiy
 */
public class PlaintextPasswordEncoder extends AbstractPasswordEncoder {

    public String encode(String plainPassword, String salt) {
        return mergePasswordAndSalt(plainPassword, salt);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy