@shadow-dev/core
Version:
A modular core framework for Discord bot development, providing commands, buttons, menus, middleware, and more.
5 lines (4 loc) • 322 B
TypeScript
export declare function generateSecureToken(length?: number): string;
export declare function generateApiKey(prefix?: string, byteLength?: number): string;
export declare function signHMAC(data: string, secret: string): string;
export declare function verifyHMAC(data: string, secret: string, signature: string): boolean;