...

Package identity

import "github.com/hyperledger/fabric/token/identity"
Overview
Index
Subdirectories

Overview ▾

type Deserializer

Deserializer

type Deserializer interface {
    // Deserialize deserializes an identity.
    // Deserialization will fail if the identity is associated to
    // an msp that is different from this one that is performing
    // the deserialization.
    DeserializeIdentity(serializedIdentity []byte) (msp.Identity, error)
}

type DeserializerManager

DeserializerManager returns instances of Deserializer

type DeserializerManager interface {
    // Deserializer returns an instance of transaction.Deserializer for the passed channel
    // if the channel exists
    Deserializer(channel string) (Deserializer, error)
}

type IssuingValidator

IssuingValidator is used to establish if the creator can issue tokens of the passed type.

type IssuingValidator interface {
    // Validate returns no error if the passed creator can issue tokens of the passed type,, an error otherwise.
    Validate(creator PublicInfo, tokenType string) error
}

type PublicInfo

PublicInfo is used to identify token owners.

type PublicInfo interface {
    Public() []byte
}

Subdirectories

Name Synopsis
..
mock Code generated by counterfeiter.