I need to convert this PHP function into Python but I don't even know, what is space padded binary string.
pack('A*', $string);
Python has struct.pack what should be probably used but I end here. Can somebody help and explain me the behaviour?
Thanks!
UPDATE:
This is the whole code I need to implement in Python. Until now I never heard about pack() so I am trying to understand what it exactly does so I can do it in Python:
function getSIGN($PID, $ID, $DESC, $PRICE, $URL, $EMAIL, $PWD) {
$bHash = pack('A*', $PID . $ID . $DESC . $PRICE . $URL . $EMAIL);
$bPWD = pack('A*', $PWD);
$SIGN = strtoupper(hash_hmac('sha256', $bHash, $bPWD, false));
return $SIGN;
}