Skip to content

Commit

Permalink
hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
antonioconselheiro committed Nov 26, 2023
1 parent 2e487bd commit bcb0f8e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
<body>
<app-root></app-root>
<noscript>Please enable JavaScript to continue using this application.</noscript>
<script src="runtime.90abdc54f7679079.js" type="module"></script><script src="polyfills.b6fa7d2fe293cdc4.js" type="module"></script><script src="main.fe0fb92ea31fcac3.js" type="module"></script></body>
<script src="runtime.90abdc54f7679079.js" type="module"></script><script src="polyfills.b6fa7d2fe293cdc4.js" type="module"></script><script src="main.df3a3bcfe6939e17.js" type="module"></script></body>
</html>

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/ngsw.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"configVersion": 1,
"timestamp": 1701012095775,
"timestamp": 1701012297401,
"index": "/private-qrcode/index.html",
"assetGroups": [
{
Expand All @@ -14,7 +14,7 @@
"/private-qrcode/663.afc5bce5c886c103.js",
"/private-qrcode/favicon.ico",
"/private-qrcode/index.html",
"/private-qrcode/main.fe0fb92ea31fcac3.js",
"/private-qrcode/main.df3a3bcfe6939e17.js",
"/private-qrcode/manifest.webmanifest",
"/private-qrcode/polyfills.b6fa7d2fe293cdc4.js",
"/private-qrcode/runtime.90abdc54f7679079.js",
Expand Down Expand Up @@ -54,8 +54,8 @@
"/private-qrcode/assets/icons/icon-72x72.png": "e0bb5b9b2a6b20712140469242c60060863ecdb0",
"/private-qrcode/assets/icons/icon-96x96.png": "bebc52063cc5e7440f17b76560156d419bc5ef66",
"/private-qrcode/favicon.ico": "22f6a4a3bcaafafb0254e0f2fa4ceb89e505e8b2",
"/private-qrcode/index.html": "18b6f1fc9a6d8f431f8f122b2b8852589eb0c21d",
"/private-qrcode/main.fe0fb92ea31fcac3.js": "128f21505bee4f5748da5fa9efcffac5f897ae09",
"/private-qrcode/index.html": "7a49d69ee335b152ff7739dd3bb7a7032017149a",
"/private-qrcode/main.df3a3bcfe6939e17.js": "cd5365a448b1b385f4e9aaa2c73909669a0b4530",
"/private-qrcode/manifest.webmanifest": "ddfa638a22dd55d15f28c4c9776a3d19ab2ef543",
"/private-qrcode/polyfills.b6fa7d2fe293cdc4.js": "a6ad13a7fb74aa6dd2e79aaa9814bb8cfa0fb7b8",
"/private-qrcode/runtime.90abdc54f7679079.js": "15043fefa96744aa249f7bb6ad7be1ec26027bcb",
Expand Down
2 changes: 1 addition & 1 deletion src/app/shared/crypt/crypt.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class CryptService {
decrypt(encrypted: string, key: string): string {
const parsed = this.parseEncryptedQrcode(encrypted);
if (parsed.encrypted && parsed.type === 'aes') {
const decrypted = CryptoJS.AES.decrypt(encrypted, key, {
const decrypted = CryptoJS.AES.decrypt(parsed.content, key, {
iv: parsed.iv,
mode: this.mode,
padding: this.padding
Expand Down

0 comments on commit bcb0f8e

Please sign in to comment.