pashword VS rgca

Compare pashword vs rgca and see what are their differences.

pashword

πŸ”’ Pashword - Never forget passwords ever again! Free and Open Source Hashed Password Generator (by pashword)

rgca

Experiment in SSL CA management. (by linsomniac)
Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
pashword rgca
30 6
265 2
1.9% -
0.0 0.0
3 months ago over 1 year ago
TypeScript Python
GNU Affero General Public License v3.0 Creative Commons Zero v1.0 Universal
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

pashword

Posts with mentions or reviews of pashword. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-01-26.
  • Show HN: Pashword – Hashed Password Calculator
    1 project | /r/hypeurls | 27 Jan 2023
    3 projects | news.ycombinator.com | 26 Jan 2023
    This is beautifully done, great design work.

    Scrypt for password stretching seems good. I see you're using CPU cost of 2^15. When storing a password hash you'd want to use 2^17 (with agility to change algorithm or increase cost in the future) [1]. Since you're not storing the result, I suspect the lower number is reasonable.

    I don't like simple concatenation when building a salt from two variable length fields. You'll get the same salt for `"foo" + "bar"` and `"foob" + "ar"`, but the salt should be unique. Although I don't think that's an issue for this project since the first is a website.

    Using the website in the salt has some issues when there are multiple domains that use the same password. Do I use mail.google.com, auth.google.com, or google.com? trello.com or atlassian.net? What if the website it bought and the new owner changes the domain name? With a password manager, I can just look in my vault to figure out the old domain name.

    Phishing is a major way passwords are stolen and this project doesn't seem to do anything to protect against that. A browser extension (and mobile app), that checks the domain name before showing/filling the password could help.

    The secret key field let me use `1234` as the key, although the color of the field was red. I think this should either prevent obviously weak passphrases or show a much more obvious warning if when one is used. Using a password found in a breach is also a bad idea (even it the password looks strong). You don't have a way to check HIBP, so users will be vulnerable if they make that mistake. It's too easy to make a critical mistake with the current design.

    A bug: I filled out the form but forgot to enable JavaScript. The form posted my passphrase back to the server (https://pashword.app/?website=google.com&username=me&passphr...). I'd recommend changing the form so the submit button doesn't do anything when JS isn't loaded, otherwise the server will learn users passphrases. This is also a good place to remember that the user fully trusts that you wont steal their info (I'm not sure why anyone should trust that).

    Also check out other similar projects, lots of discussion which likely applies here as well. I believe one of these supports uses a counter to support password rotation. You'd just need to remember the counter value for each site.

    * LessPass - https://news.ycombinator.com/item?id=12889807

  • Ask HN: Tools you have built for yourself?
    17 projects | news.ycombinator.com | 23 Jan 2023
  • Hard reset every day
    3 projects | /r/adhdmeme | 18 Jan 2023
  • Design-first open source softwares, is that a thing/possible?
    5 projects | /r/opensource | 4 Dec 2022
  • Why Tailwindcss over styled-components?
    7 projects | /r/reactjs | 23 Nov 2022
    Just take a look here: https://github.com/pashword/pashword/blob/main/pages/index.tsx
  • Good dark + gradients design systems?
    1 project | /r/web_design | 1 Oct 2022
    I'm looking for something close to https://pashword.app
  • My epic account just got hacked, I just lost over 500 dollars worth of games and accounts.
    1 project | /r/EpicGamesPC | 11 Sep 2022
    Password managers can be a bit hard to manage, people don't even bother using them. There's https://pashword.app that solves this but not many people know about it.
  • Pashword - A password generator that generates passwords you don't have to remember and cannot ever forget
    1 project | /r/somethingimade | 2 Sep 2022
  • Pashword – A Hashed Password Generator
    1 project | news.ycombinator.com | 31 Aug 2022

rgca

Posts with mentions or reviews of rgca. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-16.
  • Running one’s own root Certificate Authority in 2023
    12 projects | news.ycombinator.com | 16 Sep 2023
    Shameless plug, there's also https://github.com/linsomniac/rgca

    I've been using it at work for the last year for our certs and it's been quite nice. It can do pre/post hooks as well, so it directly commits the updated CA serial files to our git repo.

  • Ask HN: Tools you have built for yourself?
    17 projects | news.ycombinator.com | 23 Jan 2023
    I built a TLS certificate tool targeted towards my company usecase for internal certificates (developers, OpenVPN, internal certificates): https://github.com/linsomniac/rgca

    It's big features are that the cert generation can entirely be controlled from the command line, config, or environment, or any combination of the above, and it has tooling for the situation where I have an existing cert but want to add or remove a name from it. It also has pre/post scripts so I can have it do things like add it to the Ansible repo, vault encrypt it, and commit it. Beats the 10+ year old script that didn't work with Subject Alt Names.

  • Do you guys use Python classes in your day-to-day devops code?
    1 project | /r/devops | 4 Oct 2022
    Over the last year I've written several CLIs in click and typed and settles on typer because there's a little less repetition. Typer let me do some really nice things in my certificate generation tool like chaining multiple config files, the environment, and the command line to create certs. https://github.com/linsomniac/rgca
  • Ask HN: What Are You Working On? (September 2022)
    1 project | news.ycombinator.com | 1 Sep 2022
    I've always found the OpenSSL tools painful for managing internal self-signed certificates. At work we make fairly heavy use of them, and are starting to make even heavier use. Our use is more than EasyRSA can provide. So I've been working on a new CA tool:

    https://github.com/linsomniac/rgca

    In a nod to OpenSSL config files, it can take almost all values: from the command line, from the environment, or from one or more config files. It also allows "pre" and "post" commands so you can run a script after generating the cert, for example for server certs I have a "post" script that will copy it into the appropriate location in the Ansible repo, encrypt the key file, and commit it all.

    I still need to implement a "renew" which will take an existing cert, update the expiration date, but also allow adding/removing SANs, possibly other features. But I've been using it to generate all our certs recently and it's working great.

  • Feedback on a Self-signed SSL CA?
    2 projects | /r/devops | 11 Jun 2022
    At work we use self-signed certificates for internal and developer use. I inherited some scripts that wrapped the openssl CLI but weren't supporting new uses like the prevalence of Subject Alternatives Names. So I reimagined it and have published what I have so far here: https://github.com/linsomniac/rgca With an appropriate config file, the typical use would be: rgca ca new example.com rgca cert new user1.example.com rgca cert new --san test.example.com --san test2.example.com user2.example.com Basically everything can be configured by settings in (possibly multiple) config files, environment variables, and CLI options. Expected use is that things like the subject values (country, state, locality, email) are set in the config file, so the CLI can be short. Instead of: rgca cert new --C US --ST Colorado --L Fort Collins [...] It should be compatible with existing CA setups with OpenSSL CLI tools, it writes the "serial" and "index.txt" files. Looking for feedback on the direction this is going in. Thanks!
  • If OpenSSL Were a GUI
    3 projects | news.ycombinator.com | 10 Jun 2022
    It can also run pre and post scripts to, say update your serial/index in git, and deploy keys to the server, say you are rekeying every 30 days...

    Interested in feedback.

    https://github.com/linsomniac/rgca

What are some alternatives?

When comparing pashword and rgca you can also consider the following projects:

zxcvbn - Low-Budget Password Strength Estimation

gitgrep - Lightning fast code searching made easy

cfssl - CFSSL: Cloudflare's PKI and TLS toolkit

hckrweb - Hcker News mobile web app

pwgen-for-bios - Password generator for BIOS

hackerer-news

Qwickly - An easy to learn keyboard layout that's fast and comfortable to type.

MagLit - πŸ”₯ MagLit - Privacy Respecting Encrypted Link Shortener with Password Protection and Torrent Magnet Links support

upscayl - πŸ†™ Upscayl - Free and Open Source AI Image Upscaler for Linux, MacOS and Windows built with Linux-First philosophy.

daemon - a personal web server, one line of config to add a reverse proxy