Documentation ¶
Index ¶
- type Agent
- func (a *Agent) AddPipeToPWMap(p sec.Pipe, name string)
- func (a *Agent) AddToPWMap(me, you *ssi.DID, name string) sec.Pipe
- func (a *Agent) AttachSAImpl(implID string)
- func (a *Agent) AutoPermission() bool
- func (a *Agent) CAEndp() (endP *endp.Addr)
- func (a *Agent) ExportWallet(key string, exportPath string) string
- func (a *Agent) ID() string
- func (a *Agent) MasterSecret() (string, error)
- func (a *Agent) MyCA() comm.Receiver
- func (a *Agent) MyDID() *ssi.DID
- func (a *Agent) PwPipe(pwName string) (cp sec.Pipe, err error)
- func (a *Agent) SecPipe(meDID string) sec.Pipe
- func (a *Agent) SetMyDID(myDID *ssi.DID)
- func (a *Agent) WDID() string
- func (a *Agent) WEA() (wa *Agent)
- func (a *Agent) WorkerEA() comm.Receiver
- type PipeMap
- type SeedAgent
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Agent ¶
Agent is the main abstraction of the package together with Agency. The agent started as a CA but has been later added support for EAs and worker/cloud-EA as well. This might be something we will change later. Agent's most important task is/WAS to receive Payloads and process Messages inside them. And there are lots of stuff to support that. That part of code is heavily under construction.
More concrete parts of the Agent are support for wallet, root DID, did cache. Web socket connections are more like old relic, and that will change in future for something else. It WAS part of the protocol STATE management.
Please be noted that Agent or more precisely CA is singleton by its nature per EA it serves. So, Cloud Agent is a gateway to world for EA it serves. EAs are mostly in mobile devices and handicapped by their nature. In our latest architecture CA serves EA by creating a worker EA which lives in the cloud as well. For now, in the most cases we have pair or agents serving each mobile EAs here in the cloud: CA and w-EA.
There is Agent.Type where this Agent can be EA only. That type is used for test and CLI Go clients.
func (*Agent) AttachSAImpl ¶
AttachSAImpl sets implementation ID for SA to use for mocks and auto accepts.