Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

php convert decimal to hexadecimal

Tags:

php

I am extracting a serial from a digital certificate using the built-in OpenSSL library, however, I am having trouble converting this number to hex with precision.

The extracted number is originally in decimal but I need to have it in hex.

The number I am trying to convert is: 114483222461061018757513232564608398004

Here is what I've tried:

  • dechex() did not work, it returns: 7fffffffffffffff

The closest I could get was this function from the php.net page but it does not convert the whole number on part of it.

function dec2hex($dec) {
  $hex = ($dec == 0 ? '0' : '');

  while ($dec > 0) {
    $hex = dechex($dec - floor($dec / 16) * 16) . $hex;
    $dec = floor($dec / 16);
  }

  return $hex;
}
echo dec2hex('114483222461061018757513232564608398004');
//Result: 5620aaa80d50fc000000000000000000

Here is what I am expecting:

  • Decimal number: 114483222461061018757513232564608398004
  • Expected hex: 5620AAA80D50FD70496983E2A39972B4

I can see the correction conversion here: https://www.mathsisfun.com/binary-decimal-hexadecimal-converter.html

I need a PHP solution.

like image 359
user3436467 Avatar asked Aug 29 '16 04:08

user3436467


People also ask

What is HEX2BIN?

The HEX2BIN function converts a signed hexadecimal number to signed binary format.

What is hexadecimal code?

Hexadecimal is a numbering system with base 16. It can be used to represent large numbers with fewer digits. In this system there are 16 symbols or possible digit values from 0 to 9, followed by six alphabetic characters -- A, B, C, D, E and F.


2 Answers

The problem is that The largest number that can be converted is ... 4294967295 - hence why it's not working for you.

This answer worked for me during a quick test, assuming you have bcmath installed on your server, and you can obtain the number as a string to start with. If you can't, i.e. it begins life as numeric variable, you'll immediately reach PHP's float limit.

// Credit: joost at bingopaleis dot com
// Input: A decimal number as a String.
// Output: The equivalent hexadecimal number as a String.
function dec2hex($number)
{
    $hexvalues = array('0','1','2','3','4','5','6','7',
               '8','9','A','B','C','D','E','F');
    $hexval = '';
     while($number != '0')
     {
        $hexval = $hexvalues[bcmod($number,'16')].$hexval;
        $number = bcdiv($number,'16',0);
    }
    return $hexval;
}

Example:

$number = '114483222461061018757513232564608398004'; // Important: already a string!
var_dump(dec2hex($number)); // string(32) "5620AAA80D50FD70496983E2A39972B4"

Ensure you pass a string into that function, not a numeric variable. In the example you provided in the question, it looks like you can obtain the number as a string initially, so should work if you have bc installed.

like image 119
scrowler Avatar answered Oct 19 '22 23:10

scrowler


Answered by lafor. How to convert a huge integer to hex in php?

function bcdechex($dec) 
{
    $hex = '';
    do {    
        $last = bcmod($dec, 16);
        $hex = dechex($last).$hex;
        $dec = bcdiv(bcsub($dec, $last), 16);
    } while($dec>0);
    return $hex;
}

Example:
$decimal = '114483222461061018757513232564608398004';
echo "Hex decimal : ".bcdechex($decimal);
like image 30
Ganymede Avatar answered Oct 19 '22 23:10

Ganymede