co.com.bancolombia.datamask.cipher.NoOpCipher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of data-mask-core Show documentation
Show all versions of data-mask-core Show documentation
Data Masking library for jackson-databind.
The newest version!
package co.com.bancolombia.datamask.cipher;
public class NoOpCipher implements DataCipher {
@Override
public String cipher(String inputData) {
return inputData;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy