Pull request #10974 introduces the @bitwarden/sdk-internal dependency which is needed to build the desktop client. The dependency contains a licence statement which contains the following clause:

You may not use this SDK to develop applications for use with software other than Bitwarden (including non-compatible implementations of Bitwarden) or to develop another SDK.

This violates freedom 0.

It is not possible to build desktop-v2024.10.0 (or, likely, current master) without removing this dependency.

  • 31337@sh.itjust.works
    link
    fedilink
    arrow-up
    1
    ·
    2 minutes ago

    I just exported my data from BitWarden and imported into ProtonPass. Was pretty easy. Hate the color palette of the app and browser extension though, lol.

    • midnightblue@lemmy.ca
      link
      fedilink
      English
      arrow-up
      3
      ·
      1 hour ago

      I just tried it out and I’m amazed. It looks and feels just like 1Password, my absolute favorite password manager (before I switched to Bitwarden, because 1Password is proprietary and pretty expensive)

      I definitely recommend it

    • Bilb!@lem.monster
      link
      fedilink
      English
      arrow-up
      8
      ·
      7 hours ago

      I have some! I use a self hosted vaultwarden and just two days ago I saw and installed KeyGuard out of curiosity. So far, I can say KeyGuard is a nicer looking and feeling app and… it works. So as long as their intentions are pure, you can use “bitwarden” without using any of their software or infrastructure.

      • smiletolerantly@awful.systems
        link
        fedilink
        arrow-up
        2
        ·
        edit-2
        6 hours ago

        Just tried it, and it seems you can’t edit or add items without a premium subscription??

        Or am I missing something?

        Edit: Apparently only when installing via the Play Store. Very weird decision.

        • Bilb!@lem.monster
          link
          fedilink
          English
          arrow-up
          4
          ·
          edit-2
          6 hours ago

          Ah, yeah, I installed it from their github with obtainium. I think open source/libre app that charges people to install with the play store is a model a few others have tried as well.

          • smiletolerantly@awful.systems
            link
            fedilink
            arrow-up
            2
            ·
            6 hours ago

            I don’t think it’s unreasonable to want to be paid, but a mandatory subscription when using the most common install method does irk me the wrong way

            • Bilb!@lem.monster
              link
              fedilink
              English
              arrow-up
              2
              ·
              6 hours ago

              I haven’t looked into it at all, but that just seems so strange. Who would pay that when the original Bitwarden app is still there for free? Most people who would even know about KeyGuard would know how to install it from somewhere else. Is it essentially a donation?

  • Danitos@reddthat.com
    link
    fedilink
    arrow-up
    8
    arrow-down
    3
    ·
    7 hours ago

    @bitwarden bitwarden locked and limited conversation to collaborators

    They also locked the thread 16 hours ago (as of writing this comment), with no explanation.

    • asap@lemmy.world
      link
      fedilink
      English
      arrow-up
      7
      ·
      7 hours ago

      The explanation is the second-to-last comment before it got locked. 🤦

      This hysteria is really stupid.

        • asap@lemmy.world
          link
          fedilink
          English
          arrow-up
          3
          ·
          4 hours ago

          That may or may not be the case, but the comment I replied to said they locked the thread with “no explanation”.

          • cmhe@lemmy.world
            link
            fedilink
            arrow-up
            3
            ·
            4 hours ago

            I would say a proper explanation includes the goal you want to achieve, not just the statement that you think that you are allowed to do something.

  • fireshell@lemmy.ml
    link
    fedilink
    English
    arrow-up
    3
    arrow-down
    1
    ·
    edit-2
    6 hours ago

    pass is enough (+ xdotool + rofi + pass-menu). Synchronization via git or Syncthing.

        • tetris11@lemmy.ml
          link
          fedilink
          arrow-up
          1
          ·
          7 minutes ago

          Radicale+DavX5 is for calendars and contacts, no? How does this work for passwords

        • fireshell@lemmy.ml
          link
          fedilink
          English
          arrow-up
          2
          ·
          32 minutes ago

          besides everything else, the end of support for syncthing-android, yes, that’s a real blow to the gut.

      • fireshell@lemmy.ml
        link
        fedilink
        English
        arrow-up
        2
        ·
        edit-2
        51 minutes ago

        Integration with Android

        The GnuPG implementation for Android is called OpenKeychain. To configure it, just go to the “key management” menu and import the previously created secret key. The only drawback of OpenKeychain for me personally is that there is no fingerprint unlocking.

        The pass implementation for Android is called android-password-store, or simply APS.

        Install and launch APS. Before synchronizing the password store, go to the “Settings” menu. There we will need the following items:

        1. Git server settings. The resulting URL should be the same as that specified on the repository page on github. Authorization type - OpenKeychain.

        2. Git utils. In this section, specify the username and email from the gpg key.

        3. OpenPGP provider. Select OpenKeychain.

        4. Autofill.

        Now you can clone. Select “clone from server” on the main screen, specify the desired location of the repository, check the git settings.

        Of course, pass is not that easy to set up. However, this price buys confidence that the tools we use will not one day be declared obsolete, will not change their data format, and will not be left without support.

    • guillem
      link
      fedilink
      arrow-up
      1
      ·
      2 hours ago

      I’m familiar with pass and familiar-ish with rofi. What do the other two do?

      • fireshell@lemmy.ml
        link
        fedilink
        English
        arrow-up
        2
        ·
        edit-2
        1 hour ago

        A small script for entering passwords into various windows via rofi, I take passwords from pass.

        Example script:

        #!/bin/bash
        # Sample file rofi_pass.sh
        passwords=$(find /home/fireshell/.password-store/ -type f -name *.gpg)
        selected_pass=$(echo -e "$passwords" | awk -F "/" '{printf "%s > %s\n", $5, $6}' | rofi -dmenu -p Pass)
        item=$(echo "$selected_pass" | awk '{printf "%s/%s", $1, $3}' | sed 's/\.gpg//g')
        data=$(pass show $item)
        pass=$(echo -e "$data" | head -n1)
        login=$(echo -e "$data" | grep -e "^login: " | sed 's/^login: //g')
        xdotool type "$login"
        xdotool key Tab
        xdotool type "$pass"
        

        In awesome wm I bound a key that calls it like this:

        awful.key({ modkey}, "p", function () awful.spawn.with_shell("/home/fireshell/Scripts/rofi_pass.sh") end    ,
        {description = "rofi pass", group = "launcher"}),  
        

        I turn on the computer, press the key combination and the script works, or I run this script from the terminal (~/Scripts/rofi_pass.sh), select the password - it works (if necessary, pinentry is called to enter the main password), after that I press the key combination, select the desired entry

        passmenu: extremely useful and wonderful dmenu script.

        • guillem
          link
          fedilink
          English
          arrow-up
          2
          ·
          49 minutes ago

          I was copying and pasteing from pass but that looks much cooler, thanks!

  • Lemmchen@feddit.org
    link
    fedilink
    English
    arrow-up
    28
    arrow-down
    6
    ·
    edit-2
    1 hour ago

    ITT: A lot of conspiracy theories without much (any?) evidence. Let’s see if they resolve the dependency issue before wet get our pitchforks, shall we?

    • Atemu@lemmy.ml
      link
      fedilink
      arrow-up
      17
      arrow-down
      1
      ·
      edit-2
      8 hours ago

      I don’t know what the heck you’re talking about.

      I see overwhelming evidence that they have intentionally made parts of the clients’ code proprietary. You can check the client code yourself (for now anyways) and convince yourself of the fact that the bw SDK code is in indeed integrated into the bitwarden clients’ code base.

      This is the license text of the sdk-internal used in 2024.10.1 (0.1.3): https://github.com/bitwarden/sdk/blob/16a8496bfb62d78c9692a44515f63e73248e7aab/LICENSE

      You can read that license text to convince yourself of the fact that it is absolutely proprietary.

      Here is also the CTO and founder of Bitwarden admitting that they have done it and are also attempting to subvert the GPL in using sdk-internal:

      https://github.com/bitwarden/clients/issues/11611#issuecomment-2424865225

      Hi @brjsp, Thanks for sharing your concerns here. We have been progressing use of our SDK in more use cases for our clients. However, our goal is to make sure that the SDK is used in a way that maintains GPL compatibility.

      • the SDK and the client are two separate programs
      • code for each program is in separate repositories
      • the fact that the two programs communicate using standard protocols does not mean they are one program for purposes of GPLv3

      Being able to build the app as you are trying to do here is an issue we plan to resolve and is merely a bug.

      (Emphasis mine.)

      The fluff about the ability to even build the app is secondary, the primary issue is that the Bitwarden clients are no longer free software. That fact is irrefutable.

      • asap@lemmy.world
        link
        fedilink
        English
        arrow-up
        7
        arrow-down
        3
        ·
        edit-2
        6 hours ago

        That would be an issue if they were not open source. Them making their own SDK proprietary is not a pitchfork issue.

        Open source !== Non-proprietary

        I would go as far as to say that Bitwarden’s main competitive advantage and differentiation is that it’s open source. They would be insane to change that.

        • cmhe@lemmy.world
          link
          fedilink
          arrow-up
          3
          ·
          4 hours ago

          Well, then it would be nice to hear from them an explanation on why they decided to violate the GPLv3 on their client, by coupling it with proprietary code in a way that disallows building and/or usage without that proprietary component.

          They would be insane to change that.

          Yes. And i hope that they recover from it soon.

          • asap@lemmy.world
            link
            fedilink
            English
            arrow-up
            3
            arrow-down
            1
            ·
            edit-2
            3 hours ago

            Well, then it would be nice to hear from them an explanation on why they decided to violate the GPLv3

            Lucky for you, they provided that explanation:

            1. This is a bug/mistake.
            2. Our goal is to make sure that the SDK is used in a way that maintains GPL compatibility.
            3. We will fix this.
            • cmhe@lemmy.world
              link
              fedilink
              arrow-up
              4
              ·
              3 hours ago

              Ok, lets take it step by step:

              Thanks for sharing your concerns here. We have been progressing use of our SDK in more use cases for our clients. However, our goal is to make sure that the SDK is used in a way that maintains GPL compatibility.

              • the SDK and the client are two separate programs

              I think they meant executable here, but that also doesn’t matter. If both programs can only be used together and not separate, and one is under GPLv3, then the other needs to be under GPLv3 too.

              • code for each program is in separate repositories

              How the code is structured doesn’t matter, it is about how it is consumed by the end-user, there both programs are delivered together and work together.

              • the fact that the two programs communicate using standard protocols does not mean they are one program for purposes of GPLv3

              The way those two programs communicate together, doesn’t matter, they only work together and not separate from each other. Both need to be under GPLv3

              Being able to build the app as you are trying to do here is an issue we plan to resolve and is merely a bug.

              Not being able to build a GPLv3 licenses program without a proprietary one, is a build dependency. GPLv3 enforces you to be able to reproduce the code and I am pretty sure that the build tools and dependencies need to be under a GPLv3 compatible license as well.

              But all of that still doesn’t explain what their goal of introducing the proprietary SDK is. What function will it have in the future? Will open source part be completely independent or not? What features will depend on the close-source part, and which do not? Have they thought about any ethical concerns, that many contributors contributed to their software because it under a GPL license? How are they planning on dealing with the loss of trust, in a project where trust is very important? etc.

              • asap@lemmy.world
                link
                fedilink
                English
                arrow-up
                1
                arrow-down
                1
                ·
                3 hours ago

                What features will depend on the close-source part, and which do not?

                There are definitely some terminology issues here.

                The SDK is not closed source, you can find the source here: https://github.com/bitwarden/sdk

                It might not be GPL open-source, but it is not closed either.

                Other than that, I agree with your points. I don’t agree with the kneejerk hysteria from many of the comments - it’s one of the worst things about FOSS is how quick people are to anger (I am not referring to you here).

                But all of that still doesn’t explain what their goal of introducing the proprietary SDK is.

                Let’s wait and see before we get out the pitchforks.

    • youmaynotknow@lemmy.ml
      link
      fedilink
      arrow-up
      6
      arrow-down
      1
      ·
      10 hours ago

      Too late. Found a pitchfork sale in my local hardware store, so got a few for this and whatever fucking company does a rug pull next.

  • rozlav@lemmy.blahaj.zone
    link
    fedilink
    arrow-up
    39
    arrow-down
    4
    ·
    15 hours ago

    Nobody here talks about keepassxc ? I’ve been using it for almost a decade, it can be used with sync tools to be shared, I’ve managed to have db keepass file opened on several computers and it did work well. Gplv3 here https://keepassxc.org/

  • twirl7303@lemmy.world
    link
    fedilink
    arrow-up
    46
    ·
    17 hours ago

    If this is not resolved I will likely switch to another service. Free software compatibility was the main reason I paid for bitwarden over its competitors.

    • AustralianSimon@lemmy.world
      link
      fedilink
      English
      arrow-up
      5
      arrow-down
      7
      ·
      14 hours ago

      What does this change for you?

      Seems to change nothing for all my devices which is a cheap offering at $10/year.

      • Croquette@sh.itjust.works
        link
        fedilink
        arrow-up
        37
        arrow-down
        1
        ·
        14 hours ago

        The direction that the company is taking. Clearly that Bitwarden feels like other open source projects are diverting revenue from them.

        That’s a small step towards enshittification. They close this part of the software, then another part until slowly it is closed source.

        We’ve seen this move over and over.

        Stopping your business with Bitwarden over that issue sends a message that many customers don’t find this acceptable. If enough people stop using their service, they have a chance to backtrack. But even then, if they’ve done it once, they’ll try it again.

        Your current price is 10$/year now. But the moment a company tries to cull any open source of their project is the moment they try to cash it in.

      • youmaynotknow@lemmy.ml
        link
        fedilink
        arrow-up
        8
        arrow-down
        3
        ·
        10 hours ago

        How will anyone know what they add to the code now? That’s the problem, and with our fucking passwords no less. They can fuck right off. In my environment alone they will be loosing upwards of 3,500 dollars yearly, 700,000 if I can convince my boss to dump them for the company as well.

        • kratoz29@lemm.ee
          link
          fedilink
          English
          arrow-up
          1
          ·
          1 hour ago

          In my environment alone they will be loosing upwards of 3,500 dollars yearly, 700,000 if I can convince my boss to dump them for the company as well.

          And move to what?

          • youmaynotknow@lemmy.ml
            link
            fedilink
            arrow-up
            2
            ·
            35 minutes ago

            Anything, even Proton. The point is making a statement. If you start as OSS, you can fuck right off when you decide to come back sideways locking code down.

    • youmaynotknow@lemmy.ml
      link
      fedilink
      arrow-up
      4
      arrow-down
      3
      ·
      10 hours ago

      I’ll be there in a week or 2 bud. Fuck these companies baiting and then enshitifying it all.

  • wuphysics87@lemmy.ml
    link
    fedilink
    arrow-up
    16
    ·
    14 hours ago

    A few questions out of ignorance. How different is this to gitlab’s open core model? Is this a permanent change? Is the involvement of investors the root of this? Are we overreacting as it doesn’t meet our strict definition of foss?

    • Atemu@lemmy.ml
      link
      fedilink
      arrow-up
      13
      ·
      10 hours ago

      How different is this to gitlab’s open core model?

      That’s a really good question that I don’t immediately have a satisfying answer to.

      There are some differences I can point out though:

      • Gitlab has demonstrated its commitment to keep the core of their product, though limited in features, free and open source. As of now, BW’s clients cannot even be compiled without the proprietary SDK anymore.
      • Gitlab was always a permissive license (MIT) and never attempted to subvert its original license terms
      • Gitlab-EE’s “closed” core is actually quite open (go read the source code) but still squarely in the proprietary camp because it requires you to have a valid subscription to exercise your freedoms.

      Is this a permanent change?

      It’d be quite trivial for them to do in technical terms: Either license the SDK as GPL or stop using it in the clients.

      I don’t see a reason for them to roll it back though. This was decided long ago and they explicitly decided to stray away from the status quo and make it closed source.

      The only thing I could see making them revert this would be public pressure. If they lose a sufficient amount of subscribers over this, that might make them reconsider. Honestly though by that time, the cat’s out of the bag and all the public goodwill and trust is gone.
      It’s honestly a bafflingly bad decision from even just a business perspective. I predict they’ll lose at least 20% but likely 30-50% of their subscribers to this.

      Is the involvement of investors the root of this?

      I find that likely. If it stinks, it’s usually something stinky’s fault.

      Are we overreacting as it doesn’t meet our strict definition of foss?

      They are attempting to subvert one of the FOSS licenses held in the highest regard. You cannot really be much more anti than this.

      An “honest” switch to completely proprietary licenses with a public announcement months prior would have been easier to accept.

      • asap@lemmy.world
        link
        fedilink
        English
        arrow-up
        1
        ·
        edit-2
        6 hours ago

        Gitlab has demonstrated its commitment to keep the core of their product, though limited in features, free and open source. As of now, BW’s clients cannot even be compiled without the proprietary SDK anymore.

        None of that makes Bitwarden not open source. Not only that, they specifically state this is a bug which will be addressed.

        I would go as far as to say that Bitwarden’s main competitive advantage and differentiation is that it’s open source. They would be insane to stop that.

        • cmhe@lemmy.world
          link
          fedilink
          arrow-up
          5
          ·
          3 hours ago

          None of that makes Bitwarden not open source.

          Yes, it does, because it violates its own license GPLv3 by having proprietary build-/runtime dependencies.

          If it was under a different, maybe more permissive, open source license, then maybe it would still be open source, but as of right now i likely breaks its own license terms.

          Not only that, they specifically state this is a bug which will be addressed.

          From what they state, they think that because executables that share internal information via standard protocols does somehow not break GPL3 terms compared to two libraries that share internal state via the standardized C ABI which does. And they seem to not consider that a bug, just the build-time dependency.

          • asap@lemmy.world
            link
            fedilink
            English
            arrow-up
            1
            arrow-down
            1
            ·
            edit-2
            3 hours ago

            Sorry that’s my mistake - I should have said “source available”, rather than “open source”. IMO, being source available is the critical component of a password manager like Bitwarden, and is what I meant when I referred to their main competitive advantage.

            They might also choose to be open source and fix this specific issue and return to GPL-compatibility, but remaining source available would seem to be the more critical factor.

            • cmhe@lemmy.world
              link
              fedilink
              arrow-up
              2
              ·
              3 hours ago

              So you meant to say:

              I would go as far as to say that Bitwarden’s main competitive advantage and differentiation is that it’s source is available.

              That is not true, there are a lot of other password management software out there where the client source code is either open source or source available. For instance keyguard: https://github.com/AChep/keyguard-app?tab=License-1-ov-file#readme which is an alternative proprietary bitwarden client, where the source is also available. Also the Proton Pass client is under GPLv3.

              I would argue that the main advantage of bitwarden compared to others is that it is open source and has an open source server for self-hosting (vaultwarden). Which of course makes it difficult in terms of business strategy with their VC funding. But maybe becoming a non-profit org and getting money from donors, the strategic funds of EU and other governments, etc. might be an alternative way.

              • asap@lemmy.world
                link
                fedilink
                English
                arrow-up
                1
                ·
                edit-2
                3 hours ago

                I’m not aware of any other enterprise password management where the server source is available and auditable. Proton certainly is not.

  • Andrew@piefed.social
    link
    fedilink
    English
    arrow-up
    119
    arrow-down
    2
    ·
    edit-2
    22 hours ago

    There’s a lot of drama in that Issue, and then, at the very end:

    Thanks for sharing your concerns here. We have been progressing use of our SDK in more use cases for our clients. However, our goal is to make sure that the SDK is used in a way that maintains GPL compatibility.

    the SDK and the client are two separate programs
    code for each program is in separate repositories
    the fact that the two programs communicate using standard protocols does not mean they are one program for purposes of GPLv3

    Being able to build the app as you are trying to do here is an issue we plan to resolve and is merely a bug.

      • TheOubliette@lemmy.ml
        link
        fedilink
        arrow-up
        47
        arrow-down
        1
        ·
        18 hours ago

        They’re trying to argue legal technicalities because acknowledging that they’re trying to reduce compatibility with servers like vaultwarden would be bad PR.

        Per their new license, anyone that uses their SDK to build a client cannot say, “this is for Bitwarden and compatible servers like vaultwarden”. They cannot support those other servers, per their license. Anyone that gets suckered into using their SDK now becomes a force against alternative implementations.

      • superkret@feddit.org
        link
        fedilink
        arrow-up
        102
        arrow-down
        1
        ·
        21 hours ago

        They claim the SDK and Bitwarden are completely separate, so Bitwarden is still open source.

        The fact that the current version of Bitwarden doesn’t work at all without the SDK is just a bug, which will be fixed Soon™

        • Redjard@lemmy.dbzer0.com
          link
          fedilink
          arrow-up
          12
          ·
          10 hours ago

          Also important to note is that they are creating the same license problems in other places.

          They broke f-droid builds 3 months ago and try to navigate users to their own repo now. Their own repo ofc not applying foss requirements, because the android app is no longer foss as of 3 months ago. Now the f-droid version is slowly going out of date, which creates a nice security risk for no reason other than their greed.

          Apparently they also closed-sourced their “convenient” npm Bitwarden module 2 months ago, using some hard to follow reference to a license file. Previously it was marked GPL3.

        • umbrella@lemmy.ml
          link
          fedilink
          arrow-up
          16
          ·
          15 hours ago

          further translating it: they are closing it down but trying to make it look like they arent

        • CosmicTurtle0@lemmy.dbzer0.com
          link
          fedilink
          English
          arrow-up
          25
          arrow-down
          2
          ·
          18 hours ago

          Iirc, once reported, the project has 30 days to remedy or they are in violation of the license. They can’t even release a new version with a different license since this version is out under the GPL.

          • GissaMittJobb@lemmy.ml
            link
            fedilink
            arrow-up
            16
            ·
            15 hours ago

            Given that they own all of the source code (CLA is required to contribute), they can just stop offering the code under GPL, unless they happen to have any GPL dependencies not under their control, in which case this would not be viable.

            • CosmicTurtle0@lemmy.dbzer0.com
              link
              fedilink
              English
              arrow-up
              12
              arrow-down
              2
              ·
              14 hours ago

              Switching licenses to future versions doesn’t invalidate previous versions released under GPL.

              I’m not a lawyer but I deal with OSS licenses for work and I don’t know if there’s ever been a case like this, that I can think of anyway.

              Their previous versions, still being under the GPL, would require them to release a change to make it usable on desktops. Again, I’m not a lawyer here but there is a lot of case law behind the GPL and I think the user who made the issue could take them to court to force them to make the change if they don’t respond in 30 days.

              • Markaos@lemmy.one
                link
                fedilink
                arrow-up
                4
                ·
                5 hours ago

                Licensing the source as GPL doesn’t really force the copyright holder (which is 100% BitWarden due to their Contributors Agreement^*, no matter who contributed the code) to do anything - they are absolutely free to release binaries built on the same codebase as proprietary software without any mention of the GPL.

                For example if I write a hello world terminal program, release its source code under GPLv3 and then build it and give the built binary to you (and a permission to use it), you cannot force me to give you the source code for that build because I never gave you a GPL licensed binary.

                If you were to take my GPLv3 source code and distribute a build of it however, you would have to license your binaries under GPLv3, because that’s the terms of the license I provided the source code to you under. Your users would then have the right to request the source code of those binaries from you. And if you released the build under an incompatible license, I (but not the users) could sue you for violating my license.

                Their previous versions, still being under the GPL, would require them to release a change to make it usable on desktops.

                License violations are usually not resolved by making the violator comply retroactively, just going forward. And it’s the copyright holder (so BitWarden themselves) who needs to force the violator to comply.

                ^* this is the relevant part of the CA:

                By submitting a Contribution, you assign to Bitwarden all right, title, and interest in any copyright in the Contribution and you waive any rights, including any moral rights or database rights, that may affect our ownership of the copyright in the Contribution.

                It is followed by a workaround license for parts of the world where copyright cannot be given up.

              • Redjard@lemmy.dbzer0.com
                link
                fedilink
                arrow-up
                11
                ·
                11 hours ago

                It means previous versions remain open, but ownership trumps any license restrictions.
                They don’t license the code to themselves, they just have it. And if they want to close source it they can.

                GPLv3 and copyleft only work to protect against non-owners doing that. CLA means a project is not strongly open source, the company doing that CLA can rugpull at any time.

                The fact a project even has a CLA should be extremely suspect, because this is exactly what you would use that for. To ensure you can harvest contributions and none of those contributers will stand in your way when you later burn the bridges and enshittify.

    • unbroken2030@lemmy.world
      link
      fedilink
      arrow-up
      13
      arrow-down
      15
      ·
      20 hours ago

      There is always a very vocal minority itching to cause as much drama as possible. It’s very discouraging to see in general. I agree with and want more FOSS, but I’m not sure I’d ever consider making it myself; it’s not worth extra stress personally.

  • umbrella@lemmy.ml
    link
    fedilink
    arrow-up
    12
    arrow-down
    1
    ·
    edit-2
    15 hours ago

    i was about to replace my glorified encrypted text file for a password manager. guess relying on 3rd parties in a late-stage capitalist world is not a viable alternative.

    ill stay with my encrypted text file until they privatize encryption. by then ill probably be carving my passwords out on stone. or burning down the servers of these fucking pigs trying to make us identify ourselves for everything on the internet now.

  • ᗪᗩᗰᑎ@lemmy.ml
    link
    fedilink
    arrow-up
    10
    ·
    16 hours ago

    Looks like I might be moving to Proton Pass after all! I’ll give them some time to see what they do about this, but will happily give my money to someone else and migrate friends/family as well.