From 89674ad718a2c7614648b04870a53f5eb5593d57 Mon Sep 17 00:00:00 2001 From: Hsiaoming Yang Date: Mon, 25 Aug 2025 22:37:36 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8(joserfc)=20fix=20import=20path=20o?= =?UTF-8?q?f=20RSAKey?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `rfc7518` module will be removed in v1.4.0 of joserfc. --- src/backend/core/tests/resource_server/test_authentication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/core/tests/resource_server/test_authentication.py b/src/backend/core/tests/resource_server/test_authentication.py index 5a2da00..4e93cbb 100644 --- a/src/backend/core/tests/resource_server/test_authentication.py +++ b/src/backend/core/tests/resource_server/test_authentication.py @@ -9,7 +9,7 @@ from cryptography.hazmat.primitives import serialization from cryptography.hazmat.primitives.asymmetric import rsa from joserfc import jwe as jose_jwe from joserfc import jwt as jose_jwt -from joserfc.rfc7518.rsa_key import RSAKey +from joserfc.jwk import RSAKey from jwt.utils import to_base64url_uint from lasuite.oidc_resource_server.authentication import ( ResourceServerAuthentication,