Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AlgorithmProviderInf ¶
type AlgorithmProviderInf interface { Invoke(methodName string, paramMap map[string]interface{}) (interface{}, error) VerifySig(body []byte) (bool, error) }
func GetAlgorithmProvider ¶
func GetAlgorithmProvider(did string) (AlgorithmProviderInf, error)
type DataProviderInf ¶
type DataProviderInf interface { InvokeMethod(methodName string, paramMap map[string]interface{}) ([]byte, error) InvokeMethodWithParamStr(methodName string, paramStr string) ([]byte, error) VerifyDataSig(body []byte) (bool, error) }
func GetDataProvider ¶
func GetDataProvider(did string) (DataProviderInf, error)
Click to show internal directories.
Click to hide internal directories.