
eu.clarussecure.dataoperations.homomorphic.operators.Identity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dataoperations.homomorphic Show documentation
Show all versions of dataoperations.homomorphic Show documentation
CLARUS Homomorphoc encryption module
The newest version!
package eu.clarussecure.dataoperations.homomorphic.operators;
public class Identity extends Select {
@Override
public boolean select(String data) {
// The identity function selects any given data
// Since this is the identity function, it always returns true
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy