Bearer JWT client authentication and access token issued by authorization server

An authorization server issues an access token with issuer details which are exposed in a well-known API of that server. This server uses client authentication JWT tokens with clients configured. These JWT tokens are sent as a part of a re… Continue reading Bearer JWT client authentication and access token issued by authorization server

JWT secret part from php password_hash() (128bit random salt and password hashed together)?

We are using JWT (Json Web Token), with HS256 algorithm.
Is it ok to use PHP’s password_hash() functions output for the secret part?
It’s output is a 128 bit random salt with the user’s password hashed together with bcrypt.
(the reason we … Continue reading JWT secret part from php password_hash() (128bit random salt and password hashed together)?