Skip to content

Commit

Permalink
Fix hashing
Browse files Browse the repository at this point in the history
  • Loading branch information
mrruby committed May 23, 2024
1 parent f402fb4 commit 8ccdce2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion holo-key-manager-extension/src/lib/services/manage-keys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export const lockKey = async (key: hcSeedBundle.UnlockedSeedBundle, password: st

const pw = new TextEncoder().encode(password);
const encodedBytes = key.lock([
new hcSeedBundle.SeedCipherPwHash(hcSeedBundle.parseSecret(pw), 'minimum')
new hcSeedBundle.SeedCipherPwHash(hcSeedBundle.parseSecret(pw), 'moderate')
]);

key.zero();
Expand Down
2 changes: 1 addition & 1 deletion holo-key-manager-extension/static/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Holo key manager",
"description": "A browser extension to manage holo keys",
"version": "0.0.56",
"version": "0.0.57",
"manifest_version": 3,
"action": {
"default_title": "Holo key manager",
Expand Down

0 comments on commit 8ccdce2

Please sign in to comment.