Documentation ¶
Overview ¶
Package didexchange enables relationship between two agents via DID Exchange Protocol. The exchange request message is used to communicate the DID document of the invitee to the inviter using the provisional service information present in the invitation message. The exchange response message is used to complete the exchange and communicate the DID document of the inviter to the invitee. After inviter receives the exchange response, the exchange is technically complete however it is still unconfirmed to the inviter. The invitee sends ACK message to inviter to confirm the exchange.
Basic Flow: 1) Prepare client context 2) Create client 3) Register for action events (enables auto execution) 4) Create Invitation 5) Handle invitation 6) Use connection
Example ¶
bob, err := New(mockContext()) if err != nil { fmt.Println("failed to create client for Bob") } bobActions := make(chan service.DIDCommAction, 1) err = bob.RegisterActionEvent(bobActions) if err != nil { fmt.Println("failed to create Bob's action channel") } go func() { service.AutoExecuteActionEvent(bobActions) }() alice, err := New(mockContext()) if err != nil { fmt.Println("failed to create client for Alice") } aliceActions := make(chan service.DIDCommAction, 1) err = alice.RegisterActionEvent(aliceActions) if err != nil { fmt.Println("failed to create Alice's action channel") } go func() { service.AutoExecuteActionEvent(aliceActions) }() invitation, err := bob.CreateInvitation("bob invites alice") if err != nil { fmt.Printf("failed to create invitation: %s\n", err) } connectionID, err := alice.HandleInvitation(invitation) if err != nil { fmt.Printf("failed to handle invitation: %s\n", err) } connection, err := alice.GetConnection(connectionID) if err != nil { fmt.Printf("failed to get connection: %s\n", err) } fmt.Println(connection.TheirLabel)
Output: bob invites alice
Index ¶
- Constants
- Variables
- type Client
- func (c *Client) AcceptExchangeRequest(connectionID, publicDID, label string, args ...Opt) error
- func (c *Client) AcceptInvitation(connectionID, publicDID, label string, args ...Opt) error
- func (c *Client) CreateConnection(myDID string, theirDID *did.Doc, options ...ConnectionOption) (string, error)
- func (c *Client) CreateImplicitInvitation(inviterLabel, inviterDID string, args ...Opt) (string, error)
- func (c *Client) CreateImplicitInvitationWithDID(inviter, invitee *DIDInfo) (string, error)
- func (c *Client) CreateInvitation(label string, args ...InvOpt) (*Invitation, error)
- func (c *Client) CreateInvitationWithDID(label, publicDID string) (*Invitation, error)
- func (c *Client) GetConnection(connectionID string) (*Connection, error)
- func (c *Client) GetConnectionAtState(connectionID, stateID string) (*Connection, error)
- func (c *Client) HandleInvitation(invitation *Invitation) (string, error)
- func (c *Client) QueryConnections(request *QueryConnectionsParams) ([]*Connection, error)
- func (c *Client) RemoveConnection(connectionID string) error
- type Connection
- type ConnectionOption
- type DIDInfo
- type Event
- type InvOpt
- type Invitation
- type Opt
- type QueryConnectionsParams
Examples ¶
Constants ¶
const ( // InvitationMsgType defines the did-exchange invite message type. InvitationMsgType = didexchange.InvitationMsgType // RequestMsgType defines the did-exchange request message type. RequestMsgType = didexchange.RequestMsgType // ProtocolName is the framework's friendly name for the did exchange protocol. ProtocolName = didexchange.DIDExchange )
Variables ¶
var ErrConnectionNotFound = errors.New("connection not found")
ErrConnectionNotFound is returned when connection not found.
Functions ¶
This section is empty.
Types ¶
type Client ¶
Client enable access to didexchange api.
func New ¶
New return new instance of didexchange client.
Example ¶
ctx := mockContext() c, err := New(ctx) if err != nil { fmt.Println(err) } if c != nil { fmt.Println("client created") } else { fmt.Println("client is nil") }
Output: client created
func (*Client) AcceptExchangeRequest ¶
AcceptExchangeRequest accepts/approves exchange request. This call is not used if auto execute is setup for this client (see package example for more details about how to setup auto execute).
func (*Client) AcceptInvitation ¶
AcceptInvitation accepts/approves exchange invitation. This call is not used if auto execute is setup for this client (see package example for more details about how to setup auto execute).
func (*Client) CreateConnection ¶
func (c *Client) CreateConnection(myDID string, theirDID *did.Doc, options ...ConnectionOption) (string, error)
CreateConnection creates a new connection between myDID and theirDID and returns the connectionID.
func (*Client) CreateImplicitInvitation ¶
func (c *Client) CreateImplicitInvitation(inviterLabel, inviterDID string, args ...Opt) (string, error)
CreateImplicitInvitation enables invitee to create and send an exchange request using inviter public DID.
func (*Client) CreateImplicitInvitationWithDID ¶
CreateImplicitInvitationWithDID enables invitee to create implicit invitation using inviter and invitee public DID.
func (*Client) CreateInvitation ¶
func (c *Client) CreateInvitation(label string, args ...InvOpt) (*Invitation, error)
CreateInvitation creates an invitation. New key pair will be generated and did:key encoded public key will be used as basis for invitation. This invitation will be stored so client can cross-reference this invitation during did exchange protocol.
Example ¶
bob, err := New(mockContext()) if err != nil { fmt.Println("failed to create client for Bob") } invitation, err := bob.CreateInvitation("bob invites julia") if err != nil { fmt.Printf("failed to create invitation: %s\n", err) } fmt.Println(invitation.Label)
Output: bob invites julia
func (*Client) CreateInvitationWithDID ¶
func (c *Client) CreateInvitationWithDID(label, publicDID string) (*Invitation, error)
CreateInvitationWithDID creates an invitation with specified public DID. This invitation will be stored so client can cross reference this invitation during did exchange protocol.
Example ¶
bob, err := New(mockContext()) if err != nil { fmt.Println("failed to create client for Bob") } invitation, err := bob.CreateInvitationWithDID("bob invites maria", "did:example:abc-123") if err != nil { fmt.Printf("failed to create invitation with DID: %s\n", err) } fmt.Println(invitation.DID)
Output: did:example:abc-123
func (*Client) GetConnection ¶
func (c *Client) GetConnection(connectionID string) (*Connection, error)
GetConnection fetches single connection record for given id.
func (*Client) GetConnectionAtState ¶
func (c *Client) GetConnectionAtState(connectionID, stateID string) (*Connection, error)
GetConnectionAtState fetches connection record for connection id at particular state.
func (*Client) HandleInvitation ¶
func (c *Client) HandleInvitation(invitation *Invitation) (string, error)
HandleInvitation handle incoming invitation and returns the connectionID that can be used to query the state of did exchange protocol. Upon successful completion of did exchange protocol connection details will be used for securing communication between agents.
func (*Client) QueryConnections ¶
func (c *Client) QueryConnections(request *QueryConnectionsParams) ([]*Connection, error)
QueryConnections queries connections matching given criteria(parameters).
func (*Client) RemoveConnection ¶
RemoveConnection removes connection record for given id.
type Connection ¶
type Connection struct {
*connection.Record
}
Connection model
This is used to represent query connection result.
type ConnectionOption ¶
type ConnectionOption func(*Connection)
ConnectionOption allows you to customize details of the connection record.
func WithImplicit ¶
func WithImplicit(i bool) ConnectionOption
WithImplicit sets Implicit on the connection record.
func WithInvitationDID ¶
func WithInvitationDID(didID string) ConnectionOption
WithInvitationDID sets InvitationDID on the connection record.
func WithInvitationID ¶
func WithInvitationID(id string) ConnectionOption
WithInvitationID sets InvitationID on the connection record.
func WithParentThreadID ¶
func WithParentThreadID(pthid string) ConnectionOption
WithParentThreadID sets ParentThreadID on the connection record.
func WithTheirLabel ¶
func WithTheirLabel(l string) ConnectionOption
WithTheirLabel sets TheirLabel on the connection record.
func WithThreadID ¶
func WithThreadID(thid string) ConnectionOption
WithThreadID sets ThreadID on the connection record.
type Event ¶
Event properties related api. This can be used to cast Generic event properties to DID Exchange specific props.
type InvOpt ¶
type InvOpt Opt
InvOpt represents option for the CreateInvitation function.
func WithKeyType ¶
WithKeyType sets the key type to use in the didexchange invitation. DIDcomm v1 requires ED25519 key type, while DIDComm V2 requires either NISTP(256/384/521)ECDHKW key type or X25519ECDHKW key type.
func WithRouterConnectionID ¶
WithRouterConnectionID allows you to specify the router connection ID.
type Invitation ¶
type Invitation struct {
*didexchange.Invitation
}
Invitation model for DID Exchange invitation.
type Opt ¶
type Opt func(*options)
Opt represents option function.
func WithRouterConnections ¶
WithRouterConnections allows you to specify the router connections.
type QueryConnectionsParams ¶
type QueryConnectionsParams struct { // Alias of connection invitation Alias string `json:"alias,omitempty"` // Initiator is Connection invitation initiator Initiator string `json:"initiator,omitempty"` // Invitation key InvitationKey string `json:"invitation_key,omitempty"` // Invitation ID InvitationID string `json:"invitation_id,omitempty"` // Parent threadID ParentThreadID string `json:"parent_thread_id,omitempty"` // MyDID is DID of the agent MyDID string `json:"my_did,omitempty"` // State of the connection invitation State string `json:"state"` // TheirDID is other party's DID TheirDID string `json:"their_did,omitempty"` // TheirRole is other party's role TheirRole string `json:"their_role,omitempty"` }
QueryConnectionsParams model
Parameters for querying connections.