Huachao / vscode-restclient

REST Client Extension for Visual Studio Code
https://marketplace.visualstudio.com/items?itemName=humao.rest-client
MIT License
5.25k stars 436 forks source link

Support for HMAC #394

Open davgonca opened 5 years ago

davgonca commented 5 years ago

Hi,

Is it possible to implement the support for HMAC encryption ?

Thanks

svyatogor commented 3 years ago

Would love to see it!

ikamman commented 3 years ago

Yes, please add support for hmac

jedschneider commented 2 years ago

Same here!

jedschneider commented 2 years ago

With a little direction I'd be willing to provide a PR. Probably the biggest concern would be having access to an openssl implementation in order to do the signature. Is that something a VSCode plugin or VSCode itself can provide?

AnWeber commented 2 years ago

@jedschneider Is there a standard mechanism for HMAC? I thought it is individual which values are used in the hash calculation. For example, AWS authentication is also based on HMAC and uses its own generation of how the header and payload are used. For the reason I think this would make the most sense to do directly with NodeJS support. Maybe take a quick look at #674