keeper

package
v0.0.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 20, 2022 License: MIT Imports: 18 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func AppendSignerIfNeed added in v0.0.2

func AppendSignerIfNeed(signers []types.Signer, controller string, msg *types.Did) []types.Signer

func NewMsgServerImpl

func NewMsgServerImpl(keeper Keeper) types.MsgServer

NewMsgServerImpl returns an implementation of the MsgServer interface for the provided Keeper.

func VerifyIdentitySignature

func VerifyIdentitySignature(signer types.Signer, signatures []*types.SignInfo, signingInput []byte) (bool, error)

Ref 1: The current implementatition takes in the verification key and checks if that belongs to EITHER of the DID controllers. If so, then the signature is valid, which is an approach as opposed to the earlier implementation where all the signatures of all DIDs present in DID controller were expected. This needs to be verified. Link to DID Controller Spec: https://www.w3.org/TR/did-core/#did-controller

Types

type Keeper

type Keeper struct {
	// contains filtered or unexported fields
}

func NewKeeper

func NewKeeper(
	cdc codec.BinaryCodec,
	storeKey,
	memKey sdk.StoreKey,
	ps paramtypes.Subspace,

) *Keeper

func (Keeper) AppendDID

func (k Keeper) AppendDID(ctx sdk.Context, didSpec types.Did) uint64

func (Keeper) AppendSchema

func (k Keeper) AppendSchema(ctx sdk.Context, schema types.Schema) uint64

func (Keeper) GetDid

func (k Keeper) GetDid(ctx *sdk.Context, id string) (*types.Did, error)

Retrieves the DID from the store

func (Keeper) GetDidCount

func (k Keeper) GetDidCount(ctx sdk.Context) uint64

func (Keeper) GetParams

func (k Keeper) GetParams(ctx sdk.Context) types.Params

GetParams get all parameters as types.Params

func (Keeper) GetSchema

func (Keeper) GetSchemaCount

func (k Keeper) GetSchemaCount(ctx sdk.Context) uint64

func (Keeper) HasDid

func (k Keeper) HasDid(ctx sdk.Context, id string) bool

Check whether the given DID is already present in the store

func (Keeper) HasSchema

func (k Keeper) HasSchema(ctx sdk.Context, id string) bool

Check whether the given Schema already exists in the store

func (Keeper) Logger

func (k Keeper) Logger(ctx sdk.Context) log.Logger

func (Keeper) Params

func (Keeper) Schemas

func (Keeper) SetDid

func (k Keeper) SetDid(ctx sdk.Context, did types.Did) error

SetDid set a specific did in the store

func (Keeper) SetDidCount

func (k Keeper) SetDidCount(ctx sdk.Context, count uint64)

func (Keeper) SetParams

func (k Keeper) SetParams(ctx sdk.Context, params types.Params)

SetParams set the params

func (Keeper) SetSchemaCount

func (k Keeper) SetSchemaCount(ctx sdk.Context, count uint64)

func (*Keeper) ValidateController added in v0.0.2

func (k *Keeper) ValidateController(ctx *sdk.Context, id string, controller string) error

func (*Keeper) VerifySignature

func (k *Keeper) VerifySignature(ctx *sdk.Context, msg *types.Did, signers []types.Signer, signatures []*types.SignInfo) error

Ref 1: The current implementatition takes in the verification key and checks if that belongs to EITHER of the DID controllers. If so, then the signature is valid, which is an approach as opposed to the earlier implementation where all the signatures of all DIDs present in DID controller were expected. This needs to be verified. Link to DID Controller Spec: https://www.w3.org/TR/did-core/#did-controller

func (*Keeper) VerifySignatureOnCreateSchema

func (k *Keeper) VerifySignatureOnCreateSchema(ctx *sdk.Context, msg *types.Schema, signers []types.Signer, signatures []*types.SignInfo) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL