1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-13 01:58:44 +02:00

macBuf must exist if key has macKey

This commit is contained in:
Kyle Spearrin 2018-01-18 09:03:51 -05:00
parent 2952f9d158
commit df2e332134

View File

@ -623,6 +623,10 @@ angular
throw 'Encryption key unavailable.';
}
if (key.macKey && !macBuf) {
throw 'macBuf required for this type of key.';
}
if (encType !== key.encType) {
throw 'encType unavailable.';
}