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?
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? 🤨
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
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?
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.
Thank you so much for sharing your knowledge, man of science.
Been looking for a tutorial on this for a while, thanks!!
Glad I could help!
This was an awesome video
super amazing clear tutorial. works great. thanks
You're welcome!
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?
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? 🤨
Thank you sir 🙂
You save my day. thanks a lot
Thanks!
Welcome!
I am confused how this would implemented on a react form frontend and an express server backend with mongodb database.
u just need to configure web-pack for MERN stack
Sounds like a good topic for a Video. Thanks!
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
you mean JSON Web Tokens
thnx a lot
well explained
thanks for the video, where would you save the .pem files in production?
I would save them in a key vault like Hasicorp, Azure Vault, etc.
@@StuartWilliamsCloud thanks
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?
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.
I might be wrong, but openssl should be able to generate keys.
Should, never figured out what combination of args does it, if you figure it out post it.
can u make a video or share link of implementing same jwt(RSA256) using Web API .net core 2.0
.NET Core 2.x is deprecated. Please switch to Core 3.1.x LTS for success.
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
How do I distribute my public key to third party application? Using HTTP? FTP?
Ubuntu package use HTTP to distribute their public key.
jwt= json web token or java web token ?
JSON Web Token.