Flexible Privacy Groups feature - Support to Tessera's EC encryptor (#4282)

modified flexibleutil so it works with dynamic byte arrays, some logs to remove
    smart contracts adapted, changed bytecodes
    solidity contracts changed so they use bytes instead of bytes32
    modified flexibleutil to support ec keys
    flexible privacy tests adapted

Signed-off-by: Miguel Rojo <miguelangel.rojofernandez@mastercard.com>
Signed-off-by: Miguel Angel Rojo <miguelangel.rojofernandez@mastercard.com>
Co-authored-by: Sally MacFarlane <macfarla.github@gmail.com>
This commit is contained in:
Miguel Angel Rojo
2022-10-07 04:22:58 +01:00
committed by GitHub
parent 9bc210b2d4
commit 2bcd2a7eec
24 changed files with 373 additions and 176 deletions

View File

@@ -33,10 +33,6 @@ public class EnclaveKeyConfiguration {
this.enclaveEncryptorType = enclaveEncryptorType;
}
public EnclaveKeyConfiguration(final String[] pubKeyPaths, final String[] privKeyPaths) {
this(pubKeyPaths, privKeyPaths, EnclaveEncryptorType.NACL);
}
public String[] getPubKeyPaths() {
return pubKeyPaths;
}