You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yanzong/vendor/alipaysdk/easysdk/tea/kernel/main.tea

50 lines
1.6 KiB

5 months ago
model Context {
config: map[string]any,
certEnvironment: any
}
init(context: Context);
function getTimestamp(): string;
function getConfig(key: string): string;
function getSdkVersion(): string;
function toUrlEncodedRequestBody(bizParams: map[string]any): bytes;
async function readAsJson(response: $Response, method: string): map[string]any;
function toRespModel(respMap: map[string]any): map[string]any;
function getRandomBoundary(): string;
function toMultipartRequestBody(textParams: map[string]string, fileParams: map[string]string, boundary: string): readable;
function generatePage(method: string, systemParams: map[string]string, bizParams: map[string]any, textParams: map[string]string, sign: string): string;
function getMerchantCertSN(): string;
function getAlipayCertSN(respMap:map[string]any): string;
function getAlipayRootCertSN(): string;
function isCertMode(): boolean;
function extractAlipayPublicKey(alipayCertSN:string): string;
function verify(respMap: map[string]any, alipayPublicKey: string): boolean;
function sign(systemParams: map[string]string, bizParams: map[string]any, textParams: map[string]string, merchantPrivateKey: string): string;
function aesEncrypt(plainText: string, encryptKey: string): string;
function aesDecrypt(cipherText: string, encryptKey: string): string;
function generateOrderString(systemParams: map[string]string, bizParams: map[string]any, textParams: map[string]string, sign: string): string;
function concatStr(a: string, b: string): string;
function verifyParams(parameters: map[string]string, publicKey: string): boolean;
function sortMap(randomMap: map[string]string): map[string]string;