Skip to content
Snippets Groups Projects
Unverified Commit 2a67bd61 authored by CWA Technical User's avatar CWA Technical User Committed by GitHub
Browse files
parent ae0a74ca
No related branches found
No related tags found
No related merge requests found
...@@ -14,6 +14,10 @@ message PresenceTracingParameters { ...@@ -14,6 +14,10 @@ message PresenceTracingParameters {
repeated uint32 revokedTraceLocationVersions = 4; repeated uint32 revokedTraceLocationVersions = 4;
PresenceTracingPlausibleDeniabilityParameters plausibleDeniabilityParameters = 5;
repeated PresenceTracingQRCodeDescriptor qrCodeDescriptors = 6;
enum QRCodeErrorCorrectionLevel { enum QRCodeErrorCorrectionLevel {
MEDIUM = 0; MEDIUM = 0;
LOW = 1; LOW = 1;
...@@ -21,6 +25,7 @@ message PresenceTracingParameters { ...@@ -21,6 +25,7 @@ message PresenceTracingParameters {
HIGH = 3; HIGH = 3;
} }
} }
message PresenceTracingRiskCalculationParameters { message PresenceTracingRiskCalculationParameters {
repeated TransmissionRiskValueMapping transmissionRiskValueMapping = 1; repeated TransmissionRiskValueMapping transmissionRiskValueMapping = 1;
...@@ -45,4 +50,42 @@ message PresenceTracingSubmissionParameters { ...@@ -45,4 +50,42 @@ message PresenceTracingSubmissionParameters {
double slope = 2; double slope = 2;
double intercept = 3; double intercept = 3;
} }
}
message PresenceTracingPlausibleDeniabilityParameters {
repeated uint32 checkInSizesInBytes = 1;
double probabilityToFakeCheckInsIfNoCheckIns = 2;
double probabilityToFakeCheckInsIfSomeCheckIns = 3;
repeated NumberOfFakeCheckInsFunctionParameters numberOfFakeCheckInsFunctionParameters = 4;
message NumberOfFakeCheckInsFunctionParameters {
Range randomNumberRange = 1;
double p = 2;
double q = 3;
double r = 4;
double s = 5;
double t = 6;
double u = 7;
double a = 8;
double b = 9;
double c = 10;
}
}
message PresenceTracingQRCodeDescriptor {
string regexPattern = 1;
uint32 versionGroupIndex = 2;
uint32 encodedTraceLocationGroupIndex = 3;
TraceLocationEncoding traceLocationEncoding = 4;
enum TraceLocationEncoding {
BASE32 = 0;
BASE64 = 1;
}
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment