Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update libprio-rs dependency to version 0.8.0. #256

Merged
merged 2 commits into from
Jun 21, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions db/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ CREATE TABLE task_hpke_keys(
CONSTRAINT fk_task_id FOREIGN KEY(task_id) REFERENCES tasks(id)
);

-- The VDAF verification parameters used by a given task.
-- The VDAF verification keys used by a given task.
-- TODO(#229): support multiple verification parameters per task
CREATE TABLE task_vdaf_verify_params(
CREATE TABLE task_vdaf_verify_keys(
id BIGINT GENERATED ALWAYS AS IDENTITY PRIMARY KEY, -- artificial ID, internal-only
task_id BIGINT NOT NULL, -- task ID the verification parameter is associated with
vdaf_verify_param BYTEA NOT NULL, -- the VDAF verification parameter (opaque VDAF message, encrypted)
task_id BIGINT NOT NULL, -- task ID the verification key is associated with
vdaf_verify_key BYTEA NOT NULL, -- the VDAF verification key (encrypted)

CONSTRAINT vdaf_verify_param_unique_task_id UNIQUE(task_id),
CONSTRAINT vdaf_verify_key_unique_task_id UNIQUE(task_id),
CONSTRAINT fk_task_id FOREIGN KEY(task_id) REFERENCES tasks(id)
);

Expand Down
2 changes: 1 addition & 1 deletion janus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ chrono = "0.4"
hex = "0.4.3"
hpke-dispatch = "0.3.0"
num_enum = "0.5.6"
prio = "0.7.1"
prio = "0.8.0"
rand = "0.8"
ring = "0.16.20"
serde = { version = "1.0.137", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion janus_server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ opentelemetry-otlp = { version = "0.10.0", optional = true, features = ["metrics
opentelemetry-prometheus = { version = "0.10.0", optional = true }
opentelemetry-semantic-conventions = { version = "0.9.0", optional = true }
postgres-types = { version = "0.2.3", features = ["derive", "array-impls"] }
prio = "0.7.1"
prio = "0.8.0"
prometheus = { version = "0.13.1", optional = true }
rand = "0.8"
reqwest = { version = "0.11.4", default-features = false, features = ["rustls-tls", "json"] }
Expand Down
Loading