Password checks in backend vs. password encrypted data sent to frontend?

Lets assume I am building a pastebin-like web app: users can upload text notes and share them. Users should be able to password-protect notes. Whenever viewing such a note, other users must first provide the correct password to be able to … Continue reading Password checks in backend vs. password encrypted data sent to frontend?

What are the risks of using password hashing algorithms like Argon2 or PBKDF2 in a JavaScript application [duplicate]

I’m wondering what are the risks of using password hashing algorithms like Argon2 or PBKDF2 in a JavaScript application.
I am wondering this because of the considerations of client-side execution, and the potential for an attacker to explo… Continue reading What are the risks of using password hashing algorithms like Argon2 or PBKDF2 in a JavaScript application [duplicate]

How long would it take to crack hashed password stored in plain sight?

I want to store a password hash in plain sight. If I am using a dictionary to crack an Argon2 hashed password that I am storing in plain sight, how long would it take (assuming my password is reasonably complex)? Further, are there any oth… Continue reading How long would it take to crack hashed password stored in plain sight?