getSignature

getSignature(text, callbackFunc);

Parameters

text: string what you are going to sign

callbackFunc: callback functions for getting signed string

Returns in callback function

{
    status: true,                // status
    signature: "..."             // signed string
}

or

{
    status: false
}

Last updated