KOSASIH / pi-nexus-autonomous-banking-network

Undocumented method found JAVA-D1001
Documentation
Minor
3 occurrences in this check
19    return homomorphicEncryption.decrypt(encryptedData);
20  }
21
22  public byte[] computeOnEncryptedData(byte[] encryptedData1, byte[] encryptedData2) {23    return secureMultiPartyComputation.compute(encryptedData1, encryptedData2);24  }25}
15    return homomorphicEncryption.encrypt(data);
16  }
17
18  public byte[] decryptData(byte[] encryptedData) {19    return homomorphicEncryption.decrypt(encryptedData);20  }21
22  public byte[] computeOnEncryptedData(byte[] encryptedData1, byte[] encryptedData2) {
23    return secureMultiPartyComputation.compute(encryptedData1, encryptedData2);
11    secureMultiPartyComputation = new SecureMultiPartyComputation();
12  }
13
14  public byte[] encryptData(byte[] data) {15    return homomorphicEncryption.encrypt(data);16  }17
18  public byte[] decryptData(byte[] encryptedData) {
19    return homomorphicEncryption.decrypt(encryptedData);