
eu.clarussecure.dataoperations.homomorphic.HomomorphicResult 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;
import eu.clarussecure.dataoperations.DataOperationResponse;
import java.util.Random;
public class HomomorphicResult extends DataOperationResponse {
public HomomorphicResult(String[] attributeNames, String[][] content) {
super.id = new Random().nextInt();
super.attributeNames = attributeNames;
super.contents = content;
}
public String[][] getDecryptedContent() {
return this.contents;
}
public String[] getDecryptedAttributeNames() {
return this.attributeNames;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy