Lines Matching refs:serial

679                     case 'id-ce-authorityKeyIdentifier': // use 00 as the serial number instead of an empty string
1309 break 2; // serial mismatch - check other ca
1359 break 2; // serial mismatch - check other ca
2600 /* "The serial number MUST be a positive integer"
3075 * @param string $serial
3078 public function setSerialNumber($serial, $base = -256)
3080 $this->serialNumber = new BigInteger($serial, $base);
3763 * @param string $serial
3767 private function revokedCertificate(array &$rclist, $serial, $create = false)
3769 $serial = new BigInteger($serial);
3772 if (!($serial->compare($rc['userCertificate']))) {
3783 $rclist[] = ['userCertificate' => $serial,
3791 * @param string $serial
3795 public function revoke($serial, $date = null)
3799 if ($this->revokedCertificate($rclist, $serial) === false) { // If not yet revoked
3800 if (($i = $this->revokedCertificate($rclist, $serial, true)) !== false) {
3817 * @param string $serial
3820 public function unrevoke($serial)
3823 if (($i = $this->revokedCertificate($rclist, $serial)) !== false) {
3836 * @param string $serial
3839 public function getRevoked($serial)
3842 if (($i = $this->revokedCertificate($rclist, $serial)) !== false) {
3880 * @param string $serial
3884 public function removeRevokedCertificateExtension($serial, $id)
3887 if (($i = $this->revokedCertificate($rclist, $serial)) !== false) {
3900 * @param string $serial
3905 public function getRevokedCertificateExtension($serial, $id, array $crl = null)
3912 if (($i = $this->revokedCertificate($rclist, $serial)) !== false) {
3923 * @param string $serial
3927 public function getRevokedCertificateExtensions($serial, array $crl = null)
3934 if (($i = $this->revokedCertificate($rclist, $serial)) !== false) {
3945 * @param string $serial
3952 public function setRevokedCertificateExtension($serial, $id, $value, $critical = false, $replace = true)
3956 if (($i = $this->revokedCertificate($rclist, $serial, true)) !== false) {