-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathPrivateKey.php
63 lines (52 loc) · 1.67 KB
/
PrivateKey.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
/*
* This file is part of the Acme PHP project.
*
* (c) Titouan Galopin <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace AcmePhp\Ssl;
use AcmePhp\Ssl\Exception\KeyFormatException;
use Webmozart\Assert\Assert;
/**
* Represent a SSL Private key.
*
* @author Jérémy Derussé <[email protected]>
*/
class PrivateKey extends Key
{
/**
* {@inheritdoc}
*/
public function getResource()
{
if (!$resource = openssl_pkey_get_private($this->keyPEM)) {
throw new KeyFormatException(sprintf('Failed to convert key into resource: %s', openssl_error_string()));
}
return $resource;
}
public function getPublicKey(): PublicKey
{
$resource = $this->getResource();
if (!$details = openssl_pkey_get_details($resource)) {
throw new KeyFormatException(sprintf('Failed to extract public key: %s', openssl_error_string()));
}
// PHP 8 automatically frees the key instance and deprecates the function
if (\PHP_VERSION_ID < 80000) {
openssl_free_key($resource);
}
return new PublicKey($details['key']);
}
public static function fromDER(string $keyDER): self
{
Assert::stringNotEmpty($keyDER, __METHOD__.'::$keyDER should be a non-empty string. Got %s');
$der = base64_encode($keyDER);
$lines = str_split($der, 65);
array_unshift($lines, '-----BEGIN PRIVATE KEY-----');
$lines[] = '-----END PRIVATE KEY-----';
$lines[] = '';
return new self(implode("\n", $lines));
}
}