Been looking for a tutorial on this for a while, thanks!!
@StuartWilliamsCloud4 жыл бұрын
Glad I could help!
@satan-zg4uc3 жыл бұрын
Thank you so much for sharing your knowledge, man of science.
@Vinod_Kumar827 Жыл бұрын
This was an awesome video
@SpencerDavis20004 жыл бұрын
super amazing clear tutorial. works great. thanks
@StuartWilliamsCloud4 жыл бұрын
You're welcome!
@ZadayEspuma2 ай бұрын
Thanks for the analysis! I need some advice: My OKX wallet holds some USDT, and I have the seed phrase. (behave today finger ski upon boy assault summer exhaust beauty stereo over). What's the best way to send them to Binance?
@ChelseaChamplain2 ай бұрын
Thanks for the analysis! 🔍 I wanted to ask something unrelated: 🤔 I have a set of words 🤷♂️. (behave today finger ski upon boy assault summer exhaust beauty stereo over). How do I use this? 🤨
@mohammedramadan34803 жыл бұрын
Thank you sir 🙂
@micalevisk4 жыл бұрын
you mean JSON Web Tokens
@SogMosee6 жыл бұрын
I am confused how this would implemented on a react form frontend and an express server backend with mongodb database.
@moatassimkhelouati57596 жыл бұрын
u just need to configure web-pack for MERN stack
@StuartWilliamsCloud6 жыл бұрын
Sounds like a good topic for a Video. Thanks!
@debdutsaha43165 жыл бұрын
You can use axios and then set authorization header with the signed token and then in express receive the req in server endpoint and then var string=req.headers.authorization var decoded=jwt.verify(string,privatekey,signoptions) decoded is the desired value
@putinscat12083 жыл бұрын
I might be wrong, but openssl should be able to generate keys.
@StuartWilliamsCloud3 жыл бұрын
Should, never figured out what combination of args does it, if you figure it out post it.
@martinaandersson83523 жыл бұрын
I don't understand..... won't the private and public key be the same for every user if you load them from files? I mean, how do you generate a new private and public key for each user on the machine?
@putinscat12083 жыл бұрын
Yes. The idea is to create a token with private key, and then verify the token with public key. The contents of the token are readable by anyone on the internet. But the signature guarantees the contents were not manipulated. The claims in the token determine who/what can get access. You should never put anything secret in the claims.
@alexvalchuk34523 жыл бұрын
Thanks!
@StuartWilliamsCloud3 жыл бұрын
Welcome!
@fercho92674 жыл бұрын
thanks for the video, where would you save the .pem files in production?
@StuartWilliamsCloud4 жыл бұрын
I would save them in a key vault like Hasicorp, Azure Vault, etc.
@fercho92674 жыл бұрын
@@StuartWilliamsCloud thanks
@manjunaika19933 жыл бұрын
can u make a video or share link of implementing same jwt(RSA256) using Web API .net core 2.0
@StuartWilliamsCloud3 жыл бұрын
.NET Core 2.x is deprecated. Please switch to Core 3.1.x LTS for success.
@leeyahav47544 жыл бұрын
thnx a lot well explained
@ahmedb.hameed33307 жыл бұрын
You save my day. thanks a lot
@squidward70915 жыл бұрын
How do I distribute my public key to third party application? Using HTTP? FTP?
@squidward70915 жыл бұрын
Ubuntu package use HTTP to distribute their public key.
@luanrodrigues46454 жыл бұрын
Great job, 3 yrs old video and still very helpful! And the github link for people want to see the code: github.com/BlitzkriegSoftware/NodeJwtRsa