mirror of https://github.com/keeweb/keeweb
commit
211b058686
|
@ -716,7 +716,9 @@ class FileModel extends Model {
|
|||
}
|
||||
|
||||
static createKeyFileWithHash(hash) {
|
||||
return kdbxweb.Credentials.createKeyFileWithHash(hash);
|
||||
const hashData = kdbxweb.ByteUtils.base64ToBytes(hash);
|
||||
const hexHash = kdbxweb.ByteUtils.bytesToHex(hashData);
|
||||
return kdbxweb.ByteUtils.stringToBytes(hexHash);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "KeeWeb",
|
||||
"version": "1.16.2",
|
||||
"version": "1.16.3",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "KeeWeb",
|
||||
"version": "1.16.2",
|
||||
"version": "1.16.3",
|
||||
"description": "Free cross-platform password manager compatible with KeePass",
|
||||
"main": "main.js",
|
||||
"homepage": "https://keeweb.info",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "keeweb",
|
||||
"version": "1.16.2",
|
||||
"version": "1.16.3",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "keeweb",
|
||||
"version": "1.16.2",
|
||||
"version": "1.16.3",
|
||||
"description": "Free cross-platform password manager compatible with KeePass",
|
||||
"main": "Gruntfile.js",
|
||||
"private": true,
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
Release notes
|
||||
-------------
|
||||
##### v1.16.3 (2020-12-10)
|
||||
`-` fix #1650: keyfiles stored in the app can't be used
|
||||
|
||||
##### v1.16.2 (2020-12-10)
|
||||
`+` possibility to use V2 keyfiles (.keyx)
|
||||
`-` fixed a missing icon in the local file question box
|
||||
|
|
Loading…
Reference in New Issue