How to encrypt data in frontend/backend with a key that is not stored anywhere and is only known to owner?

I have read bunch of answers and tutorials on how client side cryptography is not a good idea because of many reasons listed mainly in Javascript Cryptography Considered Harmful article. Some facts

The app will be using HTT… Continue reading How to encrypt data in frontend/backend with a key that is not stored anywhere and is only known to owner?

Web Service Authentication Using PBKDF2 and a Public Salt – Does the salt need to change on every request?

I have implemented PBKDF2 authentication for some web services.

The client is given the following information, so they can duplicate the PBKDF2 function:

the hashing algorithm (SHA256)
a password that is 30 bytes long
the … Continue reading Web Service Authentication Using PBKDF2 and a Public Salt – Does the salt need to change on every request?