mirror of
https://github.com/danog/tgseclib.git
synced 2024-12-13 09:37:39 +01:00
234 lines
7.7 KiB
PHP
234 lines
7.7 KiB
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* PKCS#8 Formatted ECDSA Key Handler
|
||
|
*
|
||
|
* PHP version 5
|
||
|
*
|
||
|
* Processes keys with the following headers:
|
||
|
*
|
||
|
* -----BEGIN ENCRYPTED PRIVATE KEY-----
|
||
|
* -----BEGIN PRIVATE KEY-----
|
||
|
* -----BEGIN PUBLIC KEY-----
|
||
|
*
|
||
|
* Analogous to ssh-keygen's pkcs8 format (as specified by -m). Although PKCS8
|
||
|
* is specific to private keys it's basically creating a DER-encoded wrapper
|
||
|
* for keys. This just extends that same concept to public keys (much like ssh-keygen)
|
||
|
*
|
||
|
* @category Crypt
|
||
|
* @package ECDSA
|
||
|
* @author Jim Wigginton <terrafrost@php.net>
|
||
|
* @copyright 2015 Jim Wigginton
|
||
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||
|
* @link http://phpseclib.sourceforge.net
|
||
|
*/
|
||
|
|
||
|
namespace phpseclib\Crypt\ECDSA\Keys;
|
||
|
|
||
|
use phpseclib\Math\BigInteger;
|
||
|
use phpseclib\Crypt\Common\Keys\PKCS8 as Progenitor;
|
||
|
use phpseclib\File\ASN1;
|
||
|
use phpseclib\File\ASN1\Maps;
|
||
|
use phpseclib\Crypt\ECDSA\BaseCurves\Base as BaseCurve;
|
||
|
use phpseclib\Crypt\ECDSA\BaseCurves\TwistedEdwards as TwistedEdwardsCurve;
|
||
|
use phpseclib\Math\Common\FiniteField\Integer;
|
||
|
use phpseclib\Crypt\ECDSA\Curves\Ed25519;
|
||
|
use phpseclib\Crypt\ECDSA\Curves\Ed448;
|
||
|
|
||
|
/**
|
||
|
* PKCS#8 Formatted ECDSA Key Handler
|
||
|
*
|
||
|
* @package ECDSA
|
||
|
* @author Jim Wigginton <terrafrost@php.net>
|
||
|
* @access public
|
||
|
*/
|
||
|
abstract class PKCS8 extends Progenitor
|
||
|
{
|
||
|
use Common;
|
||
|
|
||
|
/**
|
||
|
* OID Name
|
||
|
*
|
||
|
* @var array
|
||
|
* @access private
|
||
|
*/
|
||
|
const OID_NAME = ['id-ecPublicKey', 'id-Ed25519', 'id-Ed448'];
|
||
|
|
||
|
/**
|
||
|
* OID Value
|
||
|
*
|
||
|
* @var string
|
||
|
* @access private
|
||
|
*/
|
||
|
const OID_VALUE = ['1.2.840.10045.2.1', '1.3.101.112', '1.3.101.113'];
|
||
|
|
||
|
/**
|
||
|
* Break a public or private key down into its constituent components
|
||
|
*
|
||
|
* @access public
|
||
|
* @param string $key
|
||
|
* @param string $password optional
|
||
|
* @return array
|
||
|
*/
|
||
|
public static function load($key, $password = '')
|
||
|
{
|
||
|
// initialize_static_variables() is defined in both the trait and the parent class
|
||
|
// when it's defined in two places it's the traits one that's called
|
||
|
// the parent one is needed, as well, but the parent one is called by other methods
|
||
|
// in the parent class as needed and in the context of the parent it's the parent
|
||
|
// one that's called
|
||
|
self::initialize_static_variables();
|
||
|
|
||
|
if (!is_string($key)) {
|
||
|
throw new \UnexpectedValueException('Key should be a string - not a ' . gettype($key));
|
||
|
}
|
||
|
|
||
|
$isPublic = strpos($key, 'PUBLIC') !== false;
|
||
|
|
||
|
$key = parent::load($key, $password);
|
||
|
|
||
|
$type = isset($key['privateKey']) ? 'privateKey' : 'publicKey';
|
||
|
|
||
|
switch (true) {
|
||
|
case !$isPublic && $type == 'publicKey':
|
||
|
throw new \UnexpectedValueException('Human readable string claims non-public key but DER encoded string claims public key');
|
||
|
case $isPublic && $type == 'privateKey':
|
||
|
throw new \UnexpectedValueException('Human readable string claims public key but DER encoded string claims private key');
|
||
|
}
|
||
|
|
||
|
switch ($key[$type . 'Algorithm']['algorithm']) {
|
||
|
case 'id-Ed25519':
|
||
|
case 'id-Ed448':
|
||
|
return self::loadEdDSA($key);
|
||
|
}
|
||
|
|
||
|
$decoded = ASN1::decodeBER($key[$type . 'Algorithm']['parameters']->element);
|
||
|
$params = ASN1::asn1map($decoded[0], Maps\ECParameters::MAP);
|
||
|
|
||
|
$components = [];
|
||
|
$components['curve'] = self::loadCurveByParam($params);
|
||
|
|
||
|
if ($isPublic) {
|
||
|
$components['QA'] = self::extractPoint("\0" . $key['publicKey'], $components['curve']);
|
||
|
|
||
|
return $components;
|
||
|
}
|
||
|
|
||
|
$decoded = ASN1::decodeBER($key['privateKey']);
|
||
|
$key = ASN1::asn1map($decoded[0], Maps\ECPrivateKey::MAP);
|
||
|
if (isset($key['parameters']) && $params != $key['parameters']) {
|
||
|
throw new \RuntimeException('The PKCS8 parameter field does not match the private key parameter field');
|
||
|
}
|
||
|
|
||
|
$temp = new BigInteger($key['privateKey'], 256);
|
||
|
$components['dA'] = $components['curve']->convertInteger($temp);
|
||
|
|
||
|
$components['QA'] = self::extractPoint($key['publicKey'], $components['curve']);
|
||
|
|
||
|
return $components;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Break a public or private EdDSA key down into its constituent components
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
private static function loadEdDSA(array $key)
|
||
|
{
|
||
|
$components = [];
|
||
|
|
||
|
if (isset($key['privateKey'])) {
|
||
|
$components['curve'] = $key['privateKeyAlgorithm']['algorithm'] == 'id-Ed25519' ? new Ed25519() : new Ed448();
|
||
|
|
||
|
// 0x04 == octet string
|
||
|
// 0x20 == length (32 bytes)
|
||
|
if (substr($key['privateKey'], 0, 2) != "\x04\x20") {
|
||
|
throw new \RuntimeException('The first two bytes of the private key field should be 0x0420');
|
||
|
}
|
||
|
$components['dA'] = $components['curve']->extractSecret(substr($key['privateKey'], 2));
|
||
|
}
|
||
|
|
||
|
if (isset($key['publicKey'])) {
|
||
|
if (!isset($components['curve'])) {
|
||
|
$components['curve'] = $key['publicKeyAlgorithm']['algorithm'] == 'id-Ed25519' ? new Ed25519() : new Ed448();
|
||
|
}
|
||
|
|
||
|
$components['QA'] = self::extractPoint(substr($key['publicKey'], 1), $components['curve']);
|
||
|
}
|
||
|
|
||
|
if (isset($key['privateKey']) && !isset($components['QA'])) {
|
||
|
$components['QA'] = $components['curve']->multiplyPoint($components['curve']->getBasePoint(), $components['dA']);
|
||
|
}
|
||
|
|
||
|
return $components;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Convert an ECDSA public key to the appropriate format
|
||
|
*
|
||
|
* @access public
|
||
|
* @param \phpseclib\Crypt\ECDSA\BaseCurves\Base $curve
|
||
|
* @param \phpseclib\Math\Common\FiniteField\Integer[] $publicKey
|
||
|
* @return string
|
||
|
*/
|
||
|
public static function savePublicKey(BaseCurve $curve, array $publicKey)
|
||
|
{
|
||
|
self::initialize_static_variables();
|
||
|
|
||
|
if ($curve instanceof TwistedEdwardsCurve) {
|
||
|
return self::wrapPublicKey(
|
||
|
$curve->encodePoint($publicKey),
|
||
|
null,
|
||
|
$curve instanceof Ed25519 ? 'id-Ed25519' : 'id-Ed448'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
$params = new ASN1\Element(self::encodeParameters($curve));
|
||
|
|
||
|
$key = "\4" . $publicKey[0]->toBytes() . $publicKey[1]->toBytes();
|
||
|
|
||
|
return self::wrapPublicKey($key, $params, 'id-ecPublicKey');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Convert a private key to the appropriate format.
|
||
|
*
|
||
|
* @access public
|
||
|
* @param \phpseclib\Math\Common\FiniteField\Integer $privateKey
|
||
|
* @param \phpseclib\Crypt\ECDSA\BaseCurves\Base $curve
|
||
|
* @param \phpseclib\Math\Common\FiniteField\Integer[] $publicKey
|
||
|
* @param string $password optional
|
||
|
* @return string
|
||
|
*/
|
||
|
public static function savePrivateKey(Integer $privateKey, BaseCurve $curve, array $publicKey, $password = '')
|
||
|
{
|
||
|
self::initialize_static_variables();
|
||
|
|
||
|
if ($curve instanceof TwistedEdwardsCurve) {
|
||
|
return self::wrapPrivateKey(
|
||
|
"\x04\x20" . $privateKey->secret,
|
||
|
[],
|
||
|
null,
|
||
|
$password,
|
||
|
$curve instanceof Ed25519 ? 'id-Ed25519' : 'id-Ed448',
|
||
|
$curve->encodePoint($publicKey)
|
||
|
);
|
||
|
}
|
||
|
|
||
|
$publicKey = "\4" . $publicKey[0]->toBytes() . $publicKey[1]->toBytes();
|
||
|
|
||
|
$params = new ASN1\Element(self::encodeParameters($curve));
|
||
|
|
||
|
$key = [
|
||
|
'version' => 'ecPrivkeyVer1',
|
||
|
'privateKey' => $privateKey->toBytes(),
|
||
|
//'parameters' => $params,
|
||
|
'publicKey' => "\0" . $publicKey
|
||
|
];
|
||
|
|
||
|
$key = ASN1::encodeDER($key, Maps\ECPrivateKey::MAP);
|
||
|
|
||
|
return self::wrapPrivateKey($key, [], $params, $password, 'id-ecPublicKey');
|
||
|
}
|
||
|
}
|