-
Notifications
You must be signed in to change notification settings - Fork 516
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
OOB Protocol - CredentialOffer Attachment Support #1316
OOB Protocol - CredentialOffer Attachment Support #1316
Conversation
Signed-off-by: DaevMithran <[email protected]>
…ection, tests Signed-off-by: Shaanjot Gill <[email protected]>
Signed-off-by: Shaanjot Gill <[email protected]>
Signed-off-by: Shaanjot Gill <[email protected]>
Signed-off-by: Shaanjot Gill <[email protected]>
…t-python into oob_cred_offer
Signed-off-by: Shaanjot Gill <[email protected]>
Signed-off-by: Shaanjot Gill <[email protected]>
…t-python into oob_cred_offer
Signed-off-by: Shaanjot Gill <[email protected]>
Signed-off-by: Shaanjot Gill <[email protected]>
@@ -172,7 +181,9 @@ async def create_invitation( | |||
a_id, | |||
) | |||
message_attachments.append( | |||
InvitationMessage.wrap_message(cred_ex_rec.cred_offer.offer()) | |||
InvitationMessage.wrap_message( | |||
cred_ex_rec.cred_offer.serialize() |
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.
I see here it's using cred_ex_rec.cred_offer
but at line 175 it's using cred_ex_rec.credential_offer_dict
, is that correct?
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.
cred_offer
in V20CredExRecord
is same as credential_offer_dict
in V10CredentialExchange
. I think this is correct.
Signed-off-by: Shaanjot Gill <[email protected]>
create-offer
endpoint inissue-credential-v1
andissue-credential-v2
to create an offer independent of connection.issue-credential-v1
andissue-credential-v2
credential offer workflow[Faber] with auto flags, offer_sent -> request_received -> credential_issued
[Alice] with auto flags, offer_received -> request_sent -> credential_received