PATH:
home
/
lab2454c
/
.trash
/
core
/
vendor
/
lcobucci
/
jwt
/
src
/
Signer
/
Ecdsa
<?php declare(strict_types=1); namespace Lcobucci\JWT\Signer\Ecdsa; use InvalidArgumentException; use Lcobucci\JWT\Exception; final class ConversionFailed extends InvalidArgumentException implements Exception { public static function invalidLength(): self { return new self('Invalid signature length.'); } public static function incorrectStartSequence(): self { return new self('Invalid data. Should start with a sequence.'); } public static function integerExpected(): self { return new self('Invalid data. Should contain an integer.'); } }
[-] ConversionFailed.php
[edit]
[+]
..
[-] Sha256.php
[edit]
[-] Sha384.php
[edit]
[-] Sha512.php
[edit]
[-] SignatureConverter.php
[edit]
[-] MultibyteStringConverter.php
[edit]