LDAPAccountManager/lam/lib/3rdParty/composer/spomky-labs/cbor-php/src/Tag/NegativeBigIntegerTag.php

57 lines
1.4 KiB
PHP

<?php
declare(strict_types=1);
/*
* The MIT License (MIT)
*
* Copyright (c) 2018 Spomky-Labs
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
namespace CBOR\Tag;
use CBOR\ByteStringObject;
use CBOR\CBORObject;
use CBOR\TagObject as Base;
use InvalidArgumentException;
final class NegativeBigIntegerTag extends Base
{
public static function getTagId(): int
{
return 3;
}
public static function createFromLoadedData(int $additionalInformation, ?string $data, CBORObject $object): Base
{
return new self($additionalInformation, $data, $object);
}
public static function create(CBORObject $object): Base
{
if (!$object instanceof ByteStringObject) {
throw new InvalidArgumentException('This tag only accepts a Byte String object.');
}
return new self(3, null, $object);
}
public function getNormalizedData(bool $ignoreTags = false)
{
if ($ignoreTags) {
return $this->object->getNormalizedData($ignoreTags);
}
if (!$this->object instanceof ByteStringObject) {
return $this->object->getNormalizedData($ignoreTags);
}
$integer = gmp_init(bin2hex($this->object->getValue()), 16);
$minusOne = gmp_init('-1', 10);
return gmp_strval(gmp_sub($minusOne, $integer), 10);
}
}