Expecting these series of functions to produce a 32 character long signature for authenticating via OAuth v1.
$h = hash_hmac("sha1", $url, $key, $raw_output=TRUE);
$signature = base64_encode($h);
However it's consistently producing a 30 character long signature even when I change the $url parameters. Am I understanding how to create OAuth signatures?