mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-15 01:44:06 +00:00
23 lines
648 B
PHP
23 lines
648 B
PHP
|
<?php
|
||
|
|
||
|
namespace phpseclib3\Tests\Unit\Crypt\EC;
|
||
|
|
||
|
use phpseclib3\Common\Functions\Strings;
|
||
|
use phpseclib3\Crypt\EC\Curves\Ed448;
|
||
|
|
||
|
class Ed448PrivateKey
|
||
|
{
|
||
|
public static function load($key, $password = '')
|
||
|
{
|
||
|
if (!Strings::is_stringable($key)) {
|
||
|
throw new \UnexpectedValueException('Key should be a string - not a ' . gettype($key));
|
||
|
}
|
||
|
|
||
|
$components = ['curve' => new Ed448()];
|
||
|
$components['dA'] = $components['curve']->extractSecret($key);
|
||
|
$components['QA'] = $components['curve']->multiplyPoint($components['curve']->getBasePoint(), $components['dA']);
|
||
|
|
||
|
return $components;
|
||
|
}
|
||
|
}
|