2022-02-23 02:48:51 +00:00
|
|
|
<?php
|
|
|
|
|
2022-06-04 15:31:21 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2022-02-23 02:48:51 +00:00
|
|
|
namespace phpseclib3\Tests\Unit\Crypt\EC;
|
|
|
|
|
|
|
|
use phpseclib3\Common\Functions\Strings;
|
|
|
|
use phpseclib3\Crypt\EC\Curves\Ed448;
|
|
|
|
use phpseclib3\Crypt\EC\Formats\Keys\Common;
|
|
|
|
|
|
|
|
class Ed448PublicKey
|
|
|
|
{
|
|
|
|
use Common;
|
|
|
|
|
2022-07-09 02:42:28 +00:00
|
|
|
public static function load($key, ?string $password = null): array
|
2022-02-23 02:48:51 +00:00
|
|
|
{
|
|
|
|
if (!Strings::is_stringable($key)) {
|
|
|
|
throw new \UnexpectedValueException('Key should be a string - not a ' . gettype($key));
|
|
|
|
}
|
|
|
|
|
|
|
|
$components = ['curve' => new Ed448()];
|
|
|
|
$components['QA'] = self::extractPoint($key, $components['curve']);
|
|
|
|
|
|
|
|
return $components;
|
|
|
|
}
|
|
|
|
}
|