-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKeyManager.php
106 lines (92 loc) · 2.35 KB
/
KeyManager.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?php
/*
* This file is part of the MesCryptoBundle package.
*
* (c) Francesco Cartenì <http://www.multimediaexperiencestudio.it/>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Mes\Security\CryptoBundle;
use Mes\Security\CryptoBundle\KeyGenerator\KeyGeneratorInterface;
use Mes\Security\CryptoBundle\KeyStorage\KeyStorageInterface;
use Mes\Security\CryptoBundle\Model\KeyInterface;
/**
* Class KeyManager.
*/
final class KeyManager implements KeyManagerInterface
{
/**
* @var KeyStorageInterface
*/
protected $keyStorage;
/**
* @var KeyGeneratorInterface
*/
protected $keyGenerator;
/**
* @var string
*/
protected $secret;
/**
* KeyManager constructor.
*
* @param KeyStorageInterface $keyStorage
* @param KeyGeneratorInterface $keyGenerator
*/
public function __construct(KeyStorageInterface $keyStorage, KeyGeneratorInterface $keyGenerator)
{
$this->keyStorage = $keyStorage;
$this->keyGenerator = $keyGenerator;
$this->setSecret(null);
}
/**
* {@inheritdoc}
*/
public function generate($secret = null)
{
return $this->keyGenerator->generate($secret);
}
/**
* {@inheritdoc}
*/
public function generateFromAscii($key_encoded, $secret = null)
{
return $this->keyGenerator->generateFromAscii($key_encoded, $secret);
}
/**
* {@inheritdoc}
*/
public function getKey()
{
if (null === $key = $this->keyStorage->getKey()) {
$this->keyStorage->setKey($key = $this->generate($this->getSecret()));
}
return $key;
}
/**
* {@inheritdoc}
*/
public function setKey(KeyInterface $key)
{
$this->keyStorage->setKey($key);
}
/**
* Gets the secret string used to make the Key for encryption.
*
* @return string The secret string used to make the Key for encryption
*/
public function getSecret()
{
return $this->secret;
}
/**
* Sets the secret string used to make the Key for encryption.
*
* @param string $secret The secret string used to make the Key for encryption
*/
public function setSecret($secret)
{
$this->secret = $secret;
}
}