Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AgentStorage ¶
type AgentStorage interface {
Open() error
Close() error
KMS() kms.KeyManager
DIDStorage() DIDStorage
ConnectionStorage() ConnectionStorage
CredentialStorage() CredentialStorage
}
type AgentStorageConfig ¶
type Connection ¶
type ConnectionStorage ¶
type ConnectionStorage interface {
AddConnection(conn Connection) error
GetConnection(id string) (*Connection, error)
ListConnections() ([]Connection, error)
}
type CredentialStorage ¶
type CredentialStorage interface {
}
type DIDMethod ¶
type DIDMethod string
const ( DIDMethodPrefix = "did:" DIDMethodKey DIDMethod = DIDMethodPrefix + "key" DIDMethodPeer DIDMethod = DIDMethodPrefix + "peer" DIDMethodIndy DIDMethod = DIDMethodPrefix + "indy" DIDMethodWeb DIDMethod = DIDMethodPrefix + "web" DIDMethodUnsupported DIDMethod = "unsupported" )
Click to show internal directories.
Click to hide internal directories.