Skip to content

Commit

Permalink
PB-22700 - Fix: As a user I want to generate SSO kit in order to use SSO
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricalfonsi committed Feb 8, 2023
1 parent 97f031b commit a54c346
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 1 deletion.
Binary file modified dist/chrome/passbolt-3.10.0.crx
Binary file not shown.
Binary file modified dist/chrome/passbolt-3.10.0.zip
Binary file not shown.
Binary file modified dist/firefox/passbolt-3.10.0.zip
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class GenerateSsoKitService {
*
* @param {string} passphrase The passphrase to encrypt for SSO
* @param {string} provider The SSO provider identifier
* @return {Promise<SsoKitsDto>} the couple SSO kits
* @return {Promise<object>} the couple SSO kits
*/
static async generateSsoKits(passphrase, provider) {
const nek = await GenerateSsoKeyService.generateSsoKey();
Expand Down

0 comments on commit a54c346

Please sign in to comment.