-
Notifications
You must be signed in to change notification settings - Fork 83
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
Rename prover methods, extend test test_generate_self_attested_proof #764
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Codecov Report
@@ Coverage Diff @@
## main #764 +/- ##
==========================================
+ Coverage 54.60% 54.64% +0.04%
==========================================
Files 380 380
Lines 36740 36752 +12
Branches 8082 8079 -3
==========================================
+ Hits 20062 20084 +22
+ Misses 10712 10690 -22
- Partials 5966 5978 +12
Flags with carried forward coverage won't be shown. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
Patrik-Stas
force-pushed
the
refactor/proof-renames-and-test-update
branch
2 times, most recently
from
March 2, 2023 22:13
104013d
to
6783636
Compare
Patrik-Stas
commented
Mar 2, 2023
Patrik-Stas
force-pushed
the
refactor/proof-renames-and-test-update
branch
2 times, most recently
from
March 3, 2023 12:24
ff87bcd
to
7083a68
Compare
mirgee
reviewed
Mar 6, 2023
aries_vcx/src/protocols/proof_presentation/prover/state_machine.rs
Outdated
Show resolved
Hide resolved
Patrik-Stas
force-pushed
the
refactor/proof-renames-and-test-update
branch
from
March 7, 2023 08:00
7083a68
to
7a43551
Compare
Signed-off-by: Patrik Stas <patrik.stas@absa.africa>
Signed-off-by: Patrik Stas <patrik.stas@absa.africa>
Signed-off-by: Patrik Stas <patrik.stas@absa.africa>
Signed-off-by: Patrik Stas <patrik.stas@absa.africa>
Patrik-Stas
force-pushed
the
refactor/proof-renames-and-test-update
branch
from
March 7, 2023 12:05
5b34026
to
d0f55ec
Compare
mirgee
approved these changes
Mar 7, 2023
bobozaur
approved these changes
Mar 7, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
API changes (in
aries-vcx
,libvcx_core
,vcx-napi-rs
)proof (verifier) methods:
presentation_request(...)
renamed topresentation_request_msg(...)
presentation(...)
renamed toget_presentation_msg(...)
presentation_status(...)
renamed toget_presentation_status(...)
get_proof_state(...)
renamed toproof_get_presentation_verification_status(...)
libvcx_core
and upwards added methods:get_presentation_attachment(...)
,get_presentation_request_attachment(...)
- these are returning decoded versions of attachment in the respective messages (json as string)disclosed proof methods:
generate_proof_msg(...)
renamed toget_presentation_msg(...)
(it's not generating anything, probably did historically)NodeJS
NodeJS wrapper
getProof(...)
which combined 2 ffi calls removedgetPresentationMsg(...)
,getPresentationVerificationStatus(...)
,getPresentationAttachment(...)
vcxagent-core
sendHolderProof(...)
to make proofData injectable, updated testsFaber should verify proof with self attestation
Testing
Extended test
test_generate_self_attested_proof
to include verification of proof containing of self-attested attributesmethod renames in
libvcx_core
generate_proof_msg(...)
->get_presentation_msg(...)