Would anyone know how to turn this python function into a function in php?
def createSignature(clientId, apiKey, privateKey, nonce):
message = str(nonce) + str(clientId) + apiKey
signature = hmac.new(privateKey, message, digestmod=has...
asked by
16.12.2017 / 17:21