-
-
Notifications
You must be signed in to change notification settings - Fork 4
Know issues
Ralph Plawetzki edited this page Feb 25, 2023
·
2 revisions
Cryptomator vaults have unique IDs, that get generated randomly on vault creation:
private static String generateId() {
byte[] randomBytes = new byte[9];
RNG.nextBytes(randomBytes);
return BaseEncoding.base64Url().encode(randomBytes);
}
You don't need to worry about that, as normally you never get in touch with this ID, unless you take a look at the Cryptomator settings file.
There is an issue when the randomly generated vault ID starts with a "-" character. In this rare case KeePassXC will fail to find the according password for the Cryptomator vault.
If you run into this issue, take a look at the according bug report. A workaround for this problem is described there as well.