diff --git a/dist/chrome/passbolt-3.10.0.crx b/dist/chrome/passbolt-3.10.0.crx index 2d278aad..34ae15e9 100644 Binary files a/dist/chrome/passbolt-3.10.0.crx and b/dist/chrome/passbolt-3.10.0.crx differ diff --git a/dist/chrome/passbolt-3.10.0.zip b/dist/chrome/passbolt-3.10.0.zip index 26c7cc04..67b71011 100644 Binary files a/dist/chrome/passbolt-3.10.0.zip and b/dist/chrome/passbolt-3.10.0.zip differ diff --git a/dist/firefox/passbolt-3.10.0.zip b/dist/firefox/passbolt-3.10.0.zip index 45003e38..7842c840 100644 Binary files a/dist/firefox/passbolt-3.10.0.zip and b/dist/firefox/passbolt-3.10.0.zip differ diff --git a/src/all/background_page/model/entity/sso/ssoKitServerPartEntity.js b/src/all/background_page/model/entity/sso/ssoKitServerPartEntity.js index cb0cab1c..bb6b4db0 100644 --- a/src/all/background_page/model/entity/sso/ssoKitServerPartEntity.js +++ b/src/all/background_page/model/entity/sso/ssoKitServerPartEntity.js @@ -17,6 +17,7 @@ import Validator from "validator"; const ENTITY_NAME = "SsoKitServerPartEntity"; const JWK_ALGORITHM_AES_256_BITS = "A256GCM"; +import {Buffer} from 'buffer'; /** * Entity related to the account recovery organization policy diff --git a/src/all/background_page/service/sso/generateSsoKitService.js b/src/all/background_page/service/sso/generateSsoKitService.js index e1009354..7d8b35d8 100644 --- a/src/all/background_page/service/sso/generateSsoKitService.js +++ b/src/all/background_page/service/sso/generateSsoKitService.js @@ -46,7 +46,7 @@ class GenerateSsoKitService { * * @param {string} passphrase The passphrase to encrypt for SSO * @param {string} provider The SSO provider identifier - * @return {Promise} the couple SSO kits + * @return {Promise} the couple SSO kits */ static async generateSsoKits(passphrase, provider) { const nek = await GenerateSsoKeyService.generateSsoKey();