Skip to content
This repository has been archived by the owner on Oct 17, 2022. It is now read-only.

AndreasBackx/libsecret-poc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BitWarden Libsecret

This is a proof of concept that shows how I would implement libsecret's DBUS API into BitWarden. This would allow you to use BitWarden as the sole password manager on your Linux computer. It would remove the need for GNOME keyring and KDE Wallet. At the same time it would allow for native autocompletion in Google Chrome and Firefox without the use of an extension.

This proof of concept does not work. The current issues/questions that I am facing:

  • Find/create a proper Javascript/TypeScript DBUS API.

    Neither dbus-native nor node-dbus seem to be actively maintained and they both are not stable enough it seems to be used in production software.

    For how far that I tested I could not get dbus-native to even run because it was saying that data was undefined. It could just be that I was making a mistake. It is however a very old library and contains no documentation whatsoever.

    Node-dbus does seem to be the weaker one from the two as it lacks some obvious features and is the least actively maintained. It however is currently used as it is the only one that doesn't crash when I tried to add the Service.OpenSession method. It however has an open issue where it does not support returning multiple values from a method. There are also a lot more old issues.

    It is imo the best idea to create our own DBus library.

Still not all of the libsecret DBus interfaces are implemented. Though the purpose of this poc was to inspect how to implement the DBus communication. Adding the actual functionality, should "simply" be plugging it into the BitWarden's desktop project.

The current implementation abstracts the interaction of the DBus using decorators. It should make it easy to make changes without knowing how DBus works exactly.

Note: I am no frontend developer. I simply made this proof of concept because I would really like to see the password manager incorporated more into the Linux system and applications. BitWarden's desktop application is written in TypeScript so it was obvious to use TypeScript for this proof of concept.

Releases

No releases published

Packages

No packages published