ggez-banking-sdk
Version:
A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.
14 lines (13 loc) • 449 B
TypeScript
export declare function paddingLeft(value: string, length: number, paddingChar: string): string;
export declare const generatekeyAndIv: (program_id: string, user_id: string, installation_id?: string) => {
key: string;
iv: string;
};
export declare const generatekeyAndIvUsingUserID: (user_id: string) => {
key: string;
iv: string;
};
export declare const generatekeyAndIvCode: (code: string) => {
key: string;
iv: string;
};