summaryrefslogtreecommitdiff
path: root/plugins/OStatus/lib/safemath_biginteger.php
blob: c05e24d1ec84e823d084e8f1735dd5322968ac51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

require_once 'Math/BigInteger.php';

/**
 * Crypt_RSA stores a Math_BigInteger with value 0, which triggers a bug
 * in Math_BigInteger's wakeup function which spews notices to log or output.
 * This wrapper replaces it with a version that survives serialization.
 */
class SafeMath_BigInteger extends Math_BigInteger
{
    function __wakeup()
    {
        if ($this->hex == '') {
            $this->hex = '0';
        }
        parent::__wakeup();
    }
}