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

require_once 'Crypt/RSA.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 SafeCrypt_RSA extends Crypt_RSA
{
    function __construct()
    {
        parent::__construct();
        $this->zero = new SafeMath_BigInteger();
    }
}