Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tentative implementation for importing Bitwarden entries for cards, logins and notes #68

Open
wants to merge 5 commits into
base: imports
Choose a base branch
from

Conversation

rexmtorres
Copy link

♻️ Current situation

The current implementation for importing Bitwarden is incomplete and in fact non-operational. It just lets you select a JSON file exported from Bitwarden. But the app does not actually import the entries into Keyspace.

💡 Proposed solution

The new changes add partial support for importing Bitwarden entries, specifically, cards, logins and notes.

Below are the mappings between Keyspace and Bitwarden fields.

Cards (Keyspace <- Bitwarden):

  • name <- name
  • cardNumber <- number
  • cardholderName <- cardholderName
  • expiry <- expMonth, expYear
  • securityCode <- code
  • favorite <- favorite
  • notes <- notes
  • customFields <- fields
  • dateCreated <- creationDate
  • tagId <- folderId

Logins (Keyspace <- Bitwarden):

  • name <- name
  • username <- username
  • password <- password
  • passwordHistory <- passwordHistory
  • totp <- totp
  • siteUrls <- uris
  • notes <- notes
  • favorite <- favorite
  • tagId <- folderId
  • customFields <- fields

Notes (Keyspace <- Bitwarden):

  • notes <- notes + fields
  • tagId <- folderId
  • favorite <- favorite
  • timestamp <- revisionDate or creationDate or current date

📷 Screenshots

N/A

📚 Release Notes

  • Updated build settings and dependencies
  • Added partial support for importing Bitwarden entries for cards, logins and notes

📝 Testing

N/A

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant