@@ -47,127 +47,127 @@ |
||
47 | 47 | * @package OC\Security |
48 | 48 | */ |
49 | 49 | class Crypto implements ICrypto { |
50 | - /** @var AES $cipher */ |
|
51 | - private $cipher; |
|
52 | - /** @var int */ |
|
53 | - private $ivLength = 16; |
|
54 | - /** @var IConfig */ |
|
55 | - private $config; |
|
56 | - |
|
57 | - /** |
|
58 | - * @param IConfig $config |
|
59 | - * @param ISecureRandom $random |
|
60 | - */ |
|
61 | - public function __construct(IConfig $config) { |
|
62 | - $this->cipher = new AES(); |
|
63 | - $this->config = $config; |
|
64 | - } |
|
65 | - |
|
66 | - /** |
|
67 | - * @param string $message The message to authenticate |
|
68 | - * @param string $password Password to use (defaults to `secret` in config.php) |
|
69 | - * @return string Calculated HMAC |
|
70 | - */ |
|
71 | - public function calculateHMAC(string $message, string $password = ''): string { |
|
72 | - if ($password === '') { |
|
73 | - $password = $this->config->getSystemValue('secret'); |
|
74 | - } |
|
75 | - |
|
76 | - // Append an "a" behind the password and hash it to prevent reusing the same password as for encryption |
|
77 | - $password = hash('sha512', $password . 'a'); |
|
78 | - |
|
79 | - $hash = new Hash('sha512'); |
|
80 | - $hash->setKey($password); |
|
81 | - return $hash->hash($message); |
|
82 | - } |
|
83 | - |
|
84 | - /** |
|
85 | - * Encrypts a value and adds an HMAC (Encrypt-Then-MAC) |
|
86 | - * @param string $plaintext |
|
87 | - * @param string $password Password to encrypt, if not specified the secret from config.php will be taken |
|
88 | - * @return string Authenticated ciphertext |
|
89 | - */ |
|
90 | - public function encrypt(string $plaintext, string $password = ''): string { |
|
91 | - if ($password === '') { |
|
92 | - $password = $this->config->getSystemValue('secret'); |
|
93 | - } |
|
94 | - $keyMaterial = hash_hkdf('sha512', $password); |
|
95 | - $this->cipher->setPassword(substr($keyMaterial, 0, 32)); |
|
96 | - |
|
97 | - $iv = \random_bytes($this->ivLength); |
|
98 | - $this->cipher->setIV($iv); |
|
99 | - |
|
100 | - $ciphertext = bin2hex($this->cipher->encrypt($plaintext)); |
|
101 | - $iv = bin2hex($iv); |
|
102 | - $hmac = bin2hex($this->calculateHMAC($ciphertext.$iv, substr($keyMaterial, 32))); |
|
103 | - |
|
104 | - return $ciphertext.'|'.$iv.'|'.$hmac.'|3'; |
|
105 | - } |
|
106 | - |
|
107 | - /** |
|
108 | - * Decrypts a value and verifies the HMAC (Encrypt-Then-Mac) |
|
109 | - * @param string $authenticatedCiphertext |
|
110 | - * @param string $password Password to encrypt, if not specified the secret from config.php will be taken |
|
111 | - * @return string plaintext |
|
112 | - * @throws \Exception If the HMAC does not match |
|
113 | - * @throws \Exception If the decryption failed |
|
114 | - */ |
|
115 | - public function decrypt(string $authenticatedCiphertext, string $password = ''): string { |
|
116 | - if ($password === '') { |
|
117 | - $password = $this->config->getSystemValue('secret'); |
|
118 | - } |
|
119 | - $hmacKey = $encryptionKey = $password; |
|
120 | - |
|
121 | - $parts = explode('|', $authenticatedCiphertext); |
|
122 | - $partCount = \count($parts); |
|
123 | - if ($partCount < 3 || $partCount > 4) { |
|
124 | - throw new \Exception('Authenticated ciphertext could not be decoded.'); |
|
125 | - } |
|
126 | - |
|
127 | - $ciphertext = $this->hex2bin($parts[0]); |
|
128 | - $iv = $parts[1]; |
|
129 | - $hmac = $this->hex2bin($parts[2]); |
|
130 | - |
|
131 | - if ($partCount === 4) { |
|
132 | - $version = $parts[3]; |
|
133 | - if ($version >= '2') { |
|
134 | - $iv = $this->hex2bin($iv); |
|
135 | - } |
|
136 | - |
|
137 | - if ($version === '3') { |
|
138 | - $keyMaterial = hash_hkdf('sha512', $password); |
|
139 | - $encryptionKey = substr($keyMaterial, 0, 32); |
|
140 | - $hmacKey = substr($keyMaterial, 32); |
|
141 | - } |
|
142 | - } |
|
143 | - $this->cipher->setPassword($encryptionKey); |
|
144 | - $this->cipher->setIV($iv); |
|
145 | - |
|
146 | - if (!hash_equals($this->calculateHMAC($parts[0] . $parts[1], $hmacKey), $hmac)) { |
|
147 | - throw new \Exception('HMAC does not match.'); |
|
148 | - } |
|
149 | - |
|
150 | - $result = $this->cipher->decrypt($ciphertext); |
|
151 | - if ($result === false) { |
|
152 | - throw new \Exception('Decryption failed'); |
|
153 | - } |
|
154 | - |
|
155 | - return $result; |
|
156 | - } |
|
157 | - |
|
158 | - private function hex2bin(string $hex): string { |
|
159 | - if (!ctype_xdigit($hex)) { |
|
160 | - throw new \RuntimeException('String contains non hex chars: ' . $hex); |
|
161 | - } |
|
162 | - if (strlen($hex) % 2 !== 0) { |
|
163 | - throw new \RuntimeException('Hex string is not of even length: ' . $hex); |
|
164 | - } |
|
165 | - $result = hex2bin($hex); |
|
166 | - |
|
167 | - if ($result === false) { |
|
168 | - throw new \RuntimeException('Hex to bin conversion failed: ' . $hex); |
|
169 | - } |
|
170 | - |
|
171 | - return $result; |
|
172 | - } |
|
50 | + /** @var AES $cipher */ |
|
51 | + private $cipher; |
|
52 | + /** @var int */ |
|
53 | + private $ivLength = 16; |
|
54 | + /** @var IConfig */ |
|
55 | + private $config; |
|
56 | + |
|
57 | + /** |
|
58 | + * @param IConfig $config |
|
59 | + * @param ISecureRandom $random |
|
60 | + */ |
|
61 | + public function __construct(IConfig $config) { |
|
62 | + $this->cipher = new AES(); |
|
63 | + $this->config = $config; |
|
64 | + } |
|
65 | + |
|
66 | + /** |
|
67 | + * @param string $message The message to authenticate |
|
68 | + * @param string $password Password to use (defaults to `secret` in config.php) |
|
69 | + * @return string Calculated HMAC |
|
70 | + */ |
|
71 | + public function calculateHMAC(string $message, string $password = ''): string { |
|
72 | + if ($password === '') { |
|
73 | + $password = $this->config->getSystemValue('secret'); |
|
74 | + } |
|
75 | + |
|
76 | + // Append an "a" behind the password and hash it to prevent reusing the same password as for encryption |
|
77 | + $password = hash('sha512', $password . 'a'); |
|
78 | + |
|
79 | + $hash = new Hash('sha512'); |
|
80 | + $hash->setKey($password); |
|
81 | + return $hash->hash($message); |
|
82 | + } |
|
83 | + |
|
84 | + /** |
|
85 | + * Encrypts a value and adds an HMAC (Encrypt-Then-MAC) |
|
86 | + * @param string $plaintext |
|
87 | + * @param string $password Password to encrypt, if not specified the secret from config.php will be taken |
|
88 | + * @return string Authenticated ciphertext |
|
89 | + */ |
|
90 | + public function encrypt(string $plaintext, string $password = ''): string { |
|
91 | + if ($password === '') { |
|
92 | + $password = $this->config->getSystemValue('secret'); |
|
93 | + } |
|
94 | + $keyMaterial = hash_hkdf('sha512', $password); |
|
95 | + $this->cipher->setPassword(substr($keyMaterial, 0, 32)); |
|
96 | + |
|
97 | + $iv = \random_bytes($this->ivLength); |
|
98 | + $this->cipher->setIV($iv); |
|
99 | + |
|
100 | + $ciphertext = bin2hex($this->cipher->encrypt($plaintext)); |
|
101 | + $iv = bin2hex($iv); |
|
102 | + $hmac = bin2hex($this->calculateHMAC($ciphertext.$iv, substr($keyMaterial, 32))); |
|
103 | + |
|
104 | + return $ciphertext.'|'.$iv.'|'.$hmac.'|3'; |
|
105 | + } |
|
106 | + |
|
107 | + /** |
|
108 | + * Decrypts a value and verifies the HMAC (Encrypt-Then-Mac) |
|
109 | + * @param string $authenticatedCiphertext |
|
110 | + * @param string $password Password to encrypt, if not specified the secret from config.php will be taken |
|
111 | + * @return string plaintext |
|
112 | + * @throws \Exception If the HMAC does not match |
|
113 | + * @throws \Exception If the decryption failed |
|
114 | + */ |
|
115 | + public function decrypt(string $authenticatedCiphertext, string $password = ''): string { |
|
116 | + if ($password === '') { |
|
117 | + $password = $this->config->getSystemValue('secret'); |
|
118 | + } |
|
119 | + $hmacKey = $encryptionKey = $password; |
|
120 | + |
|
121 | + $parts = explode('|', $authenticatedCiphertext); |
|
122 | + $partCount = \count($parts); |
|
123 | + if ($partCount < 3 || $partCount > 4) { |
|
124 | + throw new \Exception('Authenticated ciphertext could not be decoded.'); |
|
125 | + } |
|
126 | + |
|
127 | + $ciphertext = $this->hex2bin($parts[0]); |
|
128 | + $iv = $parts[1]; |
|
129 | + $hmac = $this->hex2bin($parts[2]); |
|
130 | + |
|
131 | + if ($partCount === 4) { |
|
132 | + $version = $parts[3]; |
|
133 | + if ($version >= '2') { |
|
134 | + $iv = $this->hex2bin($iv); |
|
135 | + } |
|
136 | + |
|
137 | + if ($version === '3') { |
|
138 | + $keyMaterial = hash_hkdf('sha512', $password); |
|
139 | + $encryptionKey = substr($keyMaterial, 0, 32); |
|
140 | + $hmacKey = substr($keyMaterial, 32); |
|
141 | + } |
|
142 | + } |
|
143 | + $this->cipher->setPassword($encryptionKey); |
|
144 | + $this->cipher->setIV($iv); |
|
145 | + |
|
146 | + if (!hash_equals($this->calculateHMAC($parts[0] . $parts[1], $hmacKey), $hmac)) { |
|
147 | + throw new \Exception('HMAC does not match.'); |
|
148 | + } |
|
149 | + |
|
150 | + $result = $this->cipher->decrypt($ciphertext); |
|
151 | + if ($result === false) { |
|
152 | + throw new \Exception('Decryption failed'); |
|
153 | + } |
|
154 | + |
|
155 | + return $result; |
|
156 | + } |
|
157 | + |
|
158 | + private function hex2bin(string $hex): string { |
|
159 | + if (!ctype_xdigit($hex)) { |
|
160 | + throw new \RuntimeException('String contains non hex chars: ' . $hex); |
|
161 | + } |
|
162 | + if (strlen($hex) % 2 !== 0) { |
|
163 | + throw new \RuntimeException('Hex string is not of even length: ' . $hex); |
|
164 | + } |
|
165 | + $result = hex2bin($hex); |
|
166 | + |
|
167 | + if ($result === false) { |
|
168 | + throw new \RuntimeException('Hex to bin conversion failed: ' . $hex); |
|
169 | + } |
|
170 | + |
|
171 | + return $result; |
|
172 | + } |
|
173 | 173 | } |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | } |
75 | 75 | |
76 | 76 | // Append an "a" behind the password and hash it to prevent reusing the same password as for encryption |
77 | - $password = hash('sha512', $password . 'a'); |
|
77 | + $password = hash('sha512', $password.'a'); |
|
78 | 78 | |
79 | 79 | $hash = new Hash('sha512'); |
80 | 80 | $hash->setKey($password); |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | $this->cipher->setPassword($encryptionKey); |
144 | 144 | $this->cipher->setIV($iv); |
145 | 145 | |
146 | - if (!hash_equals($this->calculateHMAC($parts[0] . $parts[1], $hmacKey), $hmac)) { |
|
146 | + if (!hash_equals($this->calculateHMAC($parts[0].$parts[1], $hmacKey), $hmac)) { |
|
147 | 147 | throw new \Exception('HMAC does not match.'); |
148 | 148 | } |
149 | 149 | |
@@ -157,15 +157,15 @@ discard block |
||
157 | 157 | |
158 | 158 | private function hex2bin(string $hex): string { |
159 | 159 | if (!ctype_xdigit($hex)) { |
160 | - throw new \RuntimeException('String contains non hex chars: ' . $hex); |
|
160 | + throw new \RuntimeException('String contains non hex chars: '.$hex); |
|
161 | 161 | } |
162 | 162 | if (strlen($hex) % 2 !== 0) { |
163 | - throw new \RuntimeException('Hex string is not of even length: ' . $hex); |
|
163 | + throw new \RuntimeException('Hex string is not of even length: '.$hex); |
|
164 | 164 | } |
165 | 165 | $result = hex2bin($hex); |
166 | 166 | |
167 | 167 | if ($result === false) { |
168 | - throw new \RuntimeException('Hex to bin conversion failed: ' . $hex); |
|
168 | + throw new \RuntimeException('Hex to bin conversion failed: '.$hex); |
|
169 | 169 | } |
170 | 170 | |
171 | 171 | return $result; |