You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code is the Nextjs lib, not in user code so changing to use webcrypto is not trivial.
I would way your only chance is to check if you can setup Next to use a different algo.
crypto.createCipheriv
is required by Next Auth.See opennextjs/opennextjs-cloudflare#206
Can we prioritize the implementation of the API?
@jasnell
The crypto APIs are used by Next from
crypto-utils.ts
What is used by Next is:
// * Ciphers
// * [x] crypto.createCipheriv(algorithm, key, iv[, options])
// * [x] crypto.createDecipheriv(algorithm, key, iv[, options])
with the
aes-256-gcm
algoThe text was updated successfully, but these errors were encountered: