Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
jio_mebibou
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Alexandra Rogova
jio_mebibou
Commits
0f2f7a2c
Commit
0f2f7a2c
authored
Dec 28, 2015
by
Romain Courteaud
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CryptStorage: catch decrypt exception
parent
d9d5519b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
17 deletions
+19
-17
src/jio.storage/cryptstorage.js
src/jio.storage/cryptstorage.js
+19
-17
No files found.
src/jio.storage/cryptstorage.js
View file @
0f2f7a2c
...
@@ -149,6 +149,8 @@
...
@@ -149,6 +149,8 @@
coded
=
coded
.
currentTarget
.
result
;
coded
=
coded
.
currentTarget
.
result
;
initializaton_vector
=
new
Uint8Array
(
coded
.
slice
(
0
,
12
));
initializaton_vector
=
new
Uint8Array
(
coded
.
slice
(
0
,
12
));
return
new
RSVP
.
Queue
()
.
push
(
function
()
{
return
crypto
.
subtle
.
decrypt
({
return
crypto
.
subtle
.
decrypt
({
name
:
"
AES-GCM
"
,
name
:
"
AES-GCM
"
,
iv
:
initializaton_vector
iv
:
initializaton_vector
...
@@ -158,14 +160,14 @@
...
@@ -158,14 +160,14 @@
.
push
(
function
(
arr
)
{
.
push
(
function
(
arr
)
{
//arraybuffer->string
//arraybuffer->string
arr
=
String
.
fromCharCode
.
apply
(
null
,
new
Uint8Array
(
arr
));
arr
=
String
.
fromCharCode
.
apply
(
null
,
new
Uint8Array
(
arr
));
try
{
return
jIO
.
util
.
dataURItoBlob
(
arr
);
return
jIO
.
util
.
dataURItoBlob
(
arr
);
}
catch
(
error
)
{
})
.
push
(
undefined
,
function
(
error
)
{
if
(
error
instanceof
DOMException
)
{
if
(
error
instanceof
DOMException
)
{
return
blob
;
return
blob
;
}
}
throw
error
;
throw
error
;
}
});
});
});
});
});
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment