Home
last modified time | relevance | path

Searched refs:extractSecret (Results 1 – 7 of 7) sorted by relevance

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A Dlibsodium.php70 $arr = $curve->extractSecret($private);
H A DPuTTY.php73 $arr = $components['curve']->extractSecret($private);
H A DJWK.php81 $arr = $curve->extractSecret(Strings::base64url_decode($key->d));
H A DPKCS8.php147 $arr = $components['curve']->extractSecret(substr($key['privateKey'], 2));
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/
H A DEd448.php102 public function extractSecret($str) function in phpseclib3\\Crypt\\EC\\Curves\\Ed448
158 return $this->extractSecret(Random::string(57))['dA'];
H A DEd25519.php161 public function extractSecret($str) function in phpseclib3\\Crypt\\EC\\Curves\\Ed25519
214 return $this->extractSecret(Random::string(32))['dA'];
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DEC.php213 $arr = $curve->extractSecret(Random::string($curve instanceof Ed448 ? 57 : 32));