From e453a95b3cea6595bcd961db3d19e2daa5ea286f Mon Sep 17 00:00:00 2001 From: stae1102 Date: Wed, 1 May 2024 20:01:03 +0900 Subject: [PATCH] fix: use rs-256 --- src/auth/util/oauth.util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth/util/oauth.util.ts b/src/auth/util/oauth.util.ts index 29a3653..376c246 100644 --- a/src/auth/util/oauth.util.ts +++ b/src/auth/util/oauth.util.ts @@ -81,7 +81,7 @@ export class OAuthUtil { subject: process.env.APPLE_CLIENT_ID, expiresIn: '1h', keyid: process.env.APPLE_KEY_ID, - algorithm: 'ES256', + algorithm: 'RS256', }, ); }