1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-22 21:04:08 +02:00
This commit is contained in:
syuilo
2025-02-28 09:34:21 +09:00
parent a3bba23b7d
commit c63c3462dd
6 changed files with 10 additions and 16 deletions

View File

@@ -0,0 +1,10 @@
/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { secureRndstr } from '@/misc/secure-rndstr.js';
export const generateNativeUserToken = () => secureRndstr(16);
export const isNativeUserToken = (token: string) => token.length === 16;