Skip to content

Commit ae90f51

Browse files
pnxafk11
authored andcommitted
Add Buffer::gmp()
1 parent b984b7a commit ae90f51

File tree

2 files changed

+42
-3
lines changed

2 files changed

+42
-3
lines changed

src/Buffertools/Buffer.php

+14-3
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,22 @@ public static function hex(string $hexString = '', int $byteSize = null): Buffer
7474
*/
7575
public static function int($integer, $byteSize = null): BufferInterface
7676
{
77-
if ($integer < 0) {
78-
throw new \InvalidArgumentException('Negative integers not supported by Buffer::int. This could be an application error, or you should be using templates.');
77+
$gmp = gmp_init($integer, 10);
78+
return self::gmp($gmp, $byteSize);
79+
}
80+
81+
/**
82+
* @param \GMP $gmp
83+
* @return Buffer
84+
* @throws \Exception
85+
*/
86+
public static function gmp(\GMP $gmp, $byteSize = null): BufferInterface
87+
{
88+
if (gmp_sign($gmp) < 0) {
89+
throw new \InvalidArgumentException('Negative integers not supported. This could be an application error, or you should be using templates.');
7990
}
8091

81-
$hex = gmp_strval(gmp_init($integer, 10), 16);
92+
$hex = gmp_strval($gmp, 16);
8293
if ((mb_strlen($hex) % 2) !== 0) {
8394
$hex = "0{$hex}";
8495
}

tests/BufferTest.php

+28
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,34 @@ public function testIntConstruct($int, string $expectedHex, int $size = null)
120120
$this->assertEquals($expectedHex, $buffer->getHex());
121121
}
122122

123+
/**
124+
* @return array
125+
*/
126+
public function getGmpVectors(): array
127+
{
128+
return [
129+
[ gmp_init('0A', 16) ],
130+
[ gmp_init('237852977508946591877284351678975096651401224047304305322504192889595623579202', 10) ],
131+
];
132+
}
133+
134+
/**
135+
* @dataProvider getGmpVectors
136+
* @param \GMP $gmp
137+
*/
138+
public function testGmpConstruction(\GMP $gmp)
139+
{
140+
$this->assertTrue(gmp_cmp($gmp, Buffer::gmp($gmp)->getGmp()) === 0);
141+
}
142+
143+
public function testGmpConstructionNegative()
144+
{
145+
$gmp = gmp_init('-1234', 10);
146+
147+
$this->expectException(\InvalidArgumentException::class);
148+
Buffer::gmp($gmp);
149+
}
150+
123151
public function testSlice()
124152
{
125153
$a = Buffer::hex("11000011");

0 commit comments

Comments
 (0)