Merge branch 'dev'
CI/CD / deploy (push) Successful in 2m42s
Details
CI/CD / deploy (push) Successful in 2m42s
Details
This commit is contained in:
commit
fa3d66981a
|
|
@ -6658,6 +6658,7 @@ async function initOidcKeys() {
|
|||
const pemBody = pemEnv
|
||||
.replace(/-----BEGIN PRIVATE KEY-----/, '')
|
||||
.replace(/-----END PRIVATE KEY-----/, '')
|
||||
.replace(/\\n/g, '') // literal \n from .env files
|
||||
.replace(/\s/g, '');
|
||||
const binaryDer = Uint8Array.from(atob(pemBody), c => c.charCodeAt(0));
|
||||
oidcPrivateKey = await crypto.subtle.importKey(
|
||||
|
|
|
|||
Loading…
Reference in New Issue