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

ro.ghionoiu.kmsjwt.key.DummyKeyObfuscation Maven / Gradle / Ivy

package ro.ghionoiu.kmsjwt.key;

public class DummyKeyObfuscation implements KeyDecrypt, KeyEncrypt {
    @Override
    public String encrypt(String plaintext) {
        return "X" + plaintext + "X";
    }

    @Override
    public String decrypt(String ciphertext) {
        return ciphertext.substring(1, ciphertext.length() - 1);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy