Documentation ¶
Index ¶
- func AppendSignerIfNeed(signers []types.Signer, controller string, msg *types.Did) []types.Signer
- func NewMsgServerImpl(keeper Keeper) types.MsgServer
- func VerifyIdentitySignature(signer types.Signer, signatures []*types.SignInfo, signingInput []byte) (bool, error)
- type Keeper
- func (k Keeper) AppendDID(ctx sdk.Context, didSpec types.Did) uint64
- func (k Keeper) AppendSchema(ctx sdk.Context, schema types.Schema) uint64
- func (k Keeper) DidDocCount(goCtx context.Context, req *types.QueryDidDocCountRequest) (*types.QueryDidDocCountResponse, error)
- func (k Keeper) GetDid(ctx *sdk.Context, id string) (*types.Did, error)
- func (k Keeper) GetDidCount(ctx sdk.Context) uint64
- func (k Keeper) GetDidDocById(goCtx context.Context, req *types.QueryGetDidDocByIdRequest) (*types.QueryGetDidDocByIdResponse, error)
- func (k Keeper) GetParams(ctx sdk.Context) types.Params
- func (k Keeper) GetSchema(goCtx context.Context, req *types.QueryGetSchemaRequest) (*types.QueryGetSchemaResponse, error)
- func (k Keeper) GetSchemaCount(ctx sdk.Context) uint64
- func (k Keeper) HasDid(ctx sdk.Context, id string) bool
- func (k Keeper) HasSchema(ctx sdk.Context, id string) bool
- func (k Keeper) Logger(ctx sdk.Context) log.Logger
- func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
- func (k Keeper) SchemaCount(goCtx context.Context, req *types.QuerySchemaCountRequest) (*types.QuerySchemaCountResponse, error)
- func (k Keeper) Schemas(goCtx context.Context, req *types.QuerySchemasRequest) (*types.QuerySchemasResponse, error)
- func (k Keeper) SetDid(ctx sdk.Context, did types.Did) error
- func (k Keeper) SetDidCount(ctx sdk.Context, count uint64)
- func (k Keeper) SetParams(ctx sdk.Context, params types.Params)
- func (k Keeper) SetSchemaCount(ctx sdk.Context, count uint64)
- func (k *Keeper) ValidateController(ctx *sdk.Context, id string, controller string) error
- func (k *Keeper) VerifySignature(ctx *sdk.Context, msg *types.Did, signers []types.Signer, ...) error
- func (k *Keeper) VerifySignatureOnCreateSchema(ctx *sdk.Context, msg *types.Schema, signers []types.Signer, ...) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AppendSignerIfNeed ¶ added in v0.0.2
func NewMsgServerImpl ¶
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) AppendSchema ¶
func (Keeper) DidDocCount ¶
func (k Keeper) DidDocCount(goCtx context.Context, req *types.QueryDidDocCountRequest) (*types.QueryDidDocCountResponse, error)
func (Keeper) GetDidDocById ¶
func (k Keeper) GetDidDocById(goCtx context.Context, req *types.QueryGetDidDocByIdRequest) (*types.QueryGetDidDocByIdResponse, error)
func (Keeper) GetSchema ¶
func (k Keeper) GetSchema(goCtx context.Context, req *types.QueryGetSchemaRequest) (*types.QueryGetSchemaResponse, error)
func (Keeper) Params ¶
func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
func (Keeper) SchemaCount ¶
func (k Keeper) SchemaCount(goCtx context.Context, req *types.QuerySchemaCountRequest) (*types.QuerySchemaCountResponse, error)
func (Keeper) Schemas ¶
func (k Keeper) Schemas(goCtx context.Context, req *types.QuerySchemasRequest) (*types.QuerySchemasResponse, error)
func (*Keeper) ValidateController ¶ added in v0.0.2
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