Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class TpmRsaPublicId implements KeyPublicIdInterface |
||
8 | { |
||
9 | use TpmStructureTrait; |
||
10 | |||
11 | /** |
||
12 | * @var ByteBuffer |
||
13 | */ |
||
14 | private $modulus; |
||
15 | |||
16 | private function __construct(ByteBuffer $modulus) |
||
19 | } |
||
20 | |||
21 | public function getModulus(): ByteBuffer |
||
24 | } |
||
25 | |||
26 | public static function parse(ByteBuffer $buffer, int $offset, ?int &$endOffset): KeyPublicIdInterface |
||
33 |