diff --git a/server/backend/api/app/integration/bcsc/bcsc_jwk.py b/server/backend/api/app/integration/bcsc/bcsc_jwk.py index f7a0cc754..a14e7a635 100644 --- a/server/backend/api/app/integration/bcsc/bcsc_jwk.py +++ b/server/backend/api/app/integration/bcsc/bcsc_jwk.py @@ -47,10 +47,8 @@ def get_key(algorithm): return ALGORITHMS.KEYS[algorithm] elif algorithm in ALGORITHMS.HMAC: # noqa: F811 return HMACKey - elif algorithm in ALGORITHMS.AES: - from jose.backends import AESKey # noqa: F811 - - return AESKey + elif algorithm in ALGORITHMS.AES: # noqa: F811 + return CryptographyAESKey """ # elif algorithm in ALGORITHMS.RSA: # from jose.backends import RSAKey # noqa: F811