Generating BitStamp Signature in PHP
October 31, 2015
This post will describe how to create the signature required by the BitStamp API for private calls to the API.
In the BitStamp docs, they’ve shown how to do this in Python:
In PHP, this is made possible by the hash_hmac
function.
This is the function I’m using to do this in PHP
I hope this saves someone a few seconds somewhere ;)