mirror of
https://github.com/foxhui/WebAI2API.git
synced 2026-06-16 21:03:59 +08:00
11 lines
227 B
JavaScript
11 lines
227 B
JavaScript
import crypto from 'crypto';
|
|
|
|
/**
|
|
* 生成随机 API Key
|
|
* 格式: sk-{48位十六进制字符}
|
|
* @returns {string} API Key
|
|
*/
|
|
export function generateApiKey() {
|
|
return 'sk-' + crypto.randomBytes(24).toString('hex');
|
|
}
|