@asoftwareworld/form-builder-pro
Version:
ASW Form Builder Pro helps you with rapid development and designed web forms which includes several controls. The key feature of Form Builder is to make your content attractive and effective. We can customize our control at run time and preview the same b
14 lines (13 loc) • 546 B
TypeScript
export declare class ABC {
static Hex: string;
static checkInt: (value: any) => boolean;
static enc(key: Uint8Array, plaintext: Uint8Array): Uint8Array;
static dec(key: Uint8Array, crypttext: Uint8Array): Uint8Array;
static hexBytesToString(bytes: number[]): string;
static hexStringToBytes(str: string): number[];
static utf8BytesToString(bytes: number[]): string;
static utf8StringToBytes(str: string): Uint8Array;
private static coerceArray;
private static isUint8Array;
private static checkInts;
}