import from bitwarden
Accepted Answer
-
Bitwarden could be manually edited and exported in json (encrypted or cleartext) and CSV (cleartext) but with some technical skills required. There's no way to do a bulk import from Bitwarden to ID Protection. If the Bitwarden CSV can be manually edited, then that trick can be used to import but you need to be technically oriented to be able to do this. Here's the shell script below which seems to convert Bitwarden's export CSV into Edge format which IDP recognizes;
(echo "name,url,username,password"; cut -d, -f 4,8,9,10 < bitwarden_export.csv | grep , | tail +2) > bitwarden_export_as_edge.csv # in case anyone else needs
3 3Like
Answers
-
Hi @ataru
Sincere apologies for the late response.
We don't have support for importing from Bitwarden format. F-Secure ID Protection can read a number of csv formats (Chrome/Edge/KeepassX/Lastpass/dashlane), so if the Bitwarden csv can be manually edited, I can pass you the shell script to convert the Bitwarden's exported csv into Edge format which IDP recognizes.
2 2Like