simple block scheme
This commit is contained in:
parent
71f71b299f
commit
929a01c92c
|
@ -29,6 +29,23 @@ public class Driver {
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static int[] simpleBlockScheme(int record) {
|
||||||
|
PIRSettings settings = new PIRSettings(8, 2, 2);
|
||||||
|
SimpleDatabase database = new SimpleDatabase(settings, new int[] {0, 0, 1, 1, 0, 0, 0, 0});
|
||||||
|
|
||||||
|
SimpleServer[] servers = new SimpleServer[settings.getNumServers()];
|
||||||
|
|
||||||
|
for (int i = 0; i < settings.getNumServers(); i++) {
|
||||||
|
servers[i] = new SimpleServer(database, settings);
|
||||||
|
}
|
||||||
|
|
||||||
|
SimpleClient client = new SimpleClient(settings, servers);
|
||||||
|
|
||||||
|
int[] res = client.receiveBits(record);
|
||||||
|
System.out.println("res: " + Arrays.toString(res));
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
private static int[] generalInterPolyTest(int index) {
|
private static int[] generalInterPolyTest(int index) {
|
||||||
PIRSettings settings = new PIRSettings(8, 3, 1);
|
PIRSettings settings = new PIRSettings(8, 3, 1);
|
||||||
|
@ -87,7 +104,7 @@ public class Driver {
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
// generalBlockInterPolyTestButBetter(1);
|
// generalBlockInterPolyTestButBetter(1);
|
||||||
simpleScheme(2);
|
simpleBlockScheme(1);
|
||||||
/*
|
/*
|
||||||
int sum = 0;
|
int sum = 0;
|
||||||
for (int i = 0; i < 1; i++) {
|
for (int i = 0; i < 1; i++) {
|
||||||
|
|
|
@ -19,34 +19,61 @@ public class SimpleClient {
|
||||||
this.servers = servers;
|
this.servers = servers;
|
||||||
}
|
}
|
||||||
|
|
||||||
public ArrayList<Integer> selectIndexes() {
|
public int[] selectIndexes() {
|
||||||
ArrayList<Integer> indexes = new ArrayList<>();
|
int[] indexes = new int[settings.getDatabaseSize()];
|
||||||
Random rand = new Random();
|
Random rand = new Random();
|
||||||
for (int i=0; i < settings.getDatabaseSize(); i++) {
|
for (int i=0; i < settings.getDatabaseSize(); i++) {
|
||||||
if (rand.nextInt(2) == 1) {
|
indexes[i] = rand.nextInt(2);
|
||||||
indexes.add(i);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return indexes;
|
return indexes;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public int receiveBit(int index) {
|
public int receiveBit(int index) {
|
||||||
ArrayList<Integer> S1 = selectIndexes();
|
int[] S1 = selectIndexes();
|
||||||
ArrayList<Integer> S2 = (ArrayList<Integer>) S1.clone();
|
int[] S2 = S1.clone();
|
||||||
|
|
||||||
if (S1.contains(index)) {
|
if (S1[index] == 1) {
|
||||||
// Remove the index, if it's contained in S.
|
// Remove the index, if it's contained in S.
|
||||||
S2.remove((Integer) index);
|
S2[index] = 0;
|
||||||
} else {
|
} else {
|
||||||
S2.add(index);
|
S2[index] = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// TODO: Hardcoded, should be a loop
|
// TODO: Hardcoded, should be a loop
|
||||||
int resBit1 = this.servers[0].computeBit(S1);
|
int resBit1 = this.servers[0].computeBit(S1);
|
||||||
int resBit2 = this.servers[1].computeBit(S2);
|
int resBit2 = this.servers[1].computeBit(S2);
|
||||||
|
|
||||||
return ((resBit1 + resBit2) % 2);
|
return ((resBit1 + resBit2) % 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int[] receiveBits(int record) {
|
||||||
|
int[] result = new int[settings.getBlocksize()];
|
||||||
|
|
||||||
|
int[][] S1s = new int[settings.getBlocksize()][settings.getDatabaseSize()];
|
||||||
|
int[][] S2s = new int[settings.getBlocksize()][settings.getDatabaseSize()];
|
||||||
|
|
||||||
|
for (int i = 0; i < settings.getBlocksize(); i++) {
|
||||||
|
S1s[i] = selectIndexes();
|
||||||
|
S2s[i] = S1s[i].clone();
|
||||||
|
|
||||||
|
if (S1s[i][(record*settings.getBlocksize())+i] == 1) {
|
||||||
|
// Remove the index, if it's contained in S.
|
||||||
|
S2s[i][(record*settings.getBlocksize())+i] = 0;
|
||||||
|
} else {
|
||||||
|
S2s[i][(record*settings.getBlocksize())+i] = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int[] resBit1 = this.servers[0].computeBits(S1s);
|
||||||
|
int[] resBit2 = this.servers[1].computeBits(S2s);
|
||||||
|
|
||||||
|
for (int i = 0; i < settings.getBlocksize(); i++) {
|
||||||
|
result[i] = (resBit1[i] + resBit2[i]) % 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,11 +16,22 @@ public class SimpleServer {
|
||||||
this.x = database.getX();
|
this.x = database.getX();
|
||||||
}
|
}
|
||||||
|
|
||||||
public int computeBit(ArrayList<Integer> indexes) {
|
public int computeBit(int[] indexes) {
|
||||||
int res = x[indexes.get(0)];
|
int res = x[indexes[0]];
|
||||||
for (int index : indexes.subList(1, indexes.size())) {
|
for (int i=1; i<indexes.length; i++) {
|
||||||
res = (res + x[index]) % 2;
|
if (indexes[i] == 1)
|
||||||
|
res = (res + x[i]) % 2;
|
||||||
}
|
}
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public int[] computeBits(int[][] indexes) {
|
||||||
|
int[] res = new int[settings.getBlocksize()];
|
||||||
|
for (int i = 0; i < settings.getBlocksize(); i++) {
|
||||||
|
res[i] = computeBit(indexes[i]);
|
||||||
|
}
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user