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

eu.clarussecure.dataoperations.homomorphic.HomomorphicResult Maven / Gradle / Ivy

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