Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Prf eval #795
Prf eval #795
Changes from 13 commits
cd46b44
ce55114
e59b214
1b552f4
9dc50c4
94597b1
4da8014
fd6c28e
3c5683e
b216481
06f6eb1
de5f32c
759f53a
552cc62
fe3f130
159cd2c
301a6e5
9a1fa7c
8386d24
3468de5
5dc07a0
e7e6e63
e8d9d94
94dda61
ea8da0d
bcea6c6
8bca660
64dac77
884aeec
a620e34
55cef13
9736b71
2c8a19c
b0ae43f
da13880
ecd1885
141a6b1
946a9ee
a5d3587
89c86ec
160ba83
8407938
43696a6
4268a05
4208d1b
53d71f2
1ce4281
034f556
2692af8
2a798a3
8fa6745
16c8943
d9d9672
5ea37ca
9fdad64
0c5f464
c348906
090d94f
dd07816
51e05fe
b396557
d8c0598
31a155c
9a59780
73468dc
f77a8b4
2e4b237
4d2469e
0e9f41b
91905cd
0747a6f
b4760d9
2b50c45
b380eed
afeb72c
6ea4069
da2ee44
b4d10d6
9b7649b
786d7c8
c9cb5ee
31cbde8
6219b4c
c65a93f
1acb869
644a6fc
851f624
45b2a46
dd07d7a
e1cb4b7
b2f5c78
8b0ab77
4c175bd
537e7af
5325f6d
dd0aac0
5edee6f
3fdd719
5e65826
b89d15a
b293fb5
deeca7d
729c87f
c9dc931
3aaeba4
04fe4d3
7db9376
7c211b7
4d5b105
39c7ced
e5db397
c6564f0
0efd323
60d8ab6
a17eaa9
83d74cb
f8d26c9
6c715ff
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is potentially problematic. Do we really want to do compression and decompression for every local operation? Could we instead store this object uncompressed and only compress when we sent it out?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably need to look more detailed into the tradeoff between memory cost vs cpu. I think decompressed points take 3 times more memory (I haven't checked how costly the compression is). Currently we do not do much arithmetics on curve points, just one scalar multiplication and one reveal which reconstructs the shares using two additions per party.