@@ -1,16 +1,16 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright 2015 OpenStack Foundation |
|
| 4 | - * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 5 | - * you may not use this file except in compliance with the License. |
|
| 6 | - * You may obtain a copy of the License at |
|
| 7 | - * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 8 | - * Unless required by applicable law or agreed to in writing, software |
|
| 9 | - * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 10 | - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 11 | - * See the License for the specific language governing permissions and |
|
| 12 | - * limitations under the License. |
|
| 13 | - **/ |
|
| 3 | + * Copyright 2015 OpenStack Foundation |
|
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 5 | + * you may not use this file except in compliance with the License. |
|
| 6 | + * You may obtain a copy of the License at |
|
| 7 | + * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 8 | + * Unless required by applicable law or agreed to in writing, software |
|
| 9 | + * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 10 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 11 | + * See the License for the specific language governing permissions and |
|
| 12 | + * limitations under the License. |
|
| 13 | + **/ |
|
| 14 | 14 | |
| 15 | 15 | namespace jwa\cryptographic_algorithms\key_management\rsa\OAEP; |
| 16 | 16 | |
@@ -1,16 +1,16 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright 2015 OpenStack Foundation |
|
| 4 | - * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 5 | - * you may not use this file except in compliance with the License. |
|
| 6 | - * You may obtain a copy of the License at |
|
| 7 | - * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 8 | - * Unless required by applicable law or agreed to in writing, software |
|
| 9 | - * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 10 | - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 11 | - * See the License for the specific language governing permissions and |
|
| 12 | - * limitations under the License. |
|
| 13 | - **/ |
|
| 3 | + * Copyright 2015 OpenStack Foundation |
|
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 5 | + * you may not use this file except in compliance with the License. |
|
| 6 | + * You may obtain a copy of the License at |
|
| 7 | + * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 8 | + * Unless required by applicable law or agreed to in writing, software |
|
| 9 | + * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 10 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 11 | + * See the License for the specific language governing permissions and |
|
| 12 | + * limitations under the License. |
|
| 13 | + **/ |
|
| 14 | 14 | |
| 15 | 15 | namespace jwa\cryptographic_algorithms\key_management\rsa; |
| 16 | 16 | |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | extends Abstract_RSA_Algorithm |
| 31 | 31 | implements EncryptionAlgorithm, KeyEncryption { |
| 32 | 32 | |
| 33 | - public function __construct(){ |
|
| 33 | + public function __construct() { |
|
| 34 | 34 | |
| 35 | 35 | parent::__construct(); |
| 36 | 36 | //configuration ... |
@@ -47,18 +47,18 @@ discard block |
||
| 47 | 47 | */ |
| 48 | 48 | public function encrypt(Key $key, $message) |
| 49 | 49 | { |
| 50 | - if(!($key instanceof RSAPublicKey)) |
|
| 50 | + if (!($key instanceof RSAPublicKey)) |
|
| 51 | 51 | throw new InvalidKeyTypeAlgorithmException('key is not public'); |
| 52 | 52 | |
| 53 | - if($key->getFormat() !== 'PKCS8') |
|
| 53 | + if ($key->getFormat() !== 'PKCS8') |
|
| 54 | 54 | throw new InvalidKeyTypeAlgorithmException('keys is not on PKCS1 format'); |
| 55 | 55 | |
| 56 | 56 | $res = $this->rsa_impl->loadKey($key->getEncoded()); |
| 57 | 57 | |
| 58 | - if(!$res) |
|
| 58 | + if (!$res) |
|
| 59 | 59 | throw new InvalidKeyTypeAlgorithmException('could not parse the key'); |
| 60 | 60 | |
| 61 | - if($this->rsa_impl->getSize() < $this->getMinKeyLen()) |
|
| 61 | + if ($this->rsa_impl->getSize() < $this->getMinKeyLen()) |
|
| 62 | 62 | throw new InvalidKeyTypeAlgorithmException('len is invalid'); |
| 63 | 63 | |
| 64 | 64 | return $this->rsa_impl->encrypt($message); |
@@ -70,21 +70,21 @@ discard block |
||
| 70 | 70 | * @return string |
| 71 | 71 | * @throws InvalidKeyTypeAlgorithmException |
| 72 | 72 | */ |
| 73 | - public function decrypt(Key $key, $enc_message){ |
|
| 73 | + public function decrypt(Key $key, $enc_message) { |
|
| 74 | 74 | |
| 75 | - if(!($key instanceof RSAPrivateKey)) |
|
| 75 | + if (!($key instanceof RSAPrivateKey)) |
|
| 76 | 76 | throw new InvalidKeyTypeAlgorithmException('key is not private'); |
| 77 | 77 | |
| 78 | 78 | |
| 79 | - if($key->getFormat() !== 'PKCS1') |
|
| 79 | + if ($key->getFormat() !== 'PKCS1') |
|
| 80 | 80 | throw new InvalidKeyTypeAlgorithmException('keys is not on PKCS1 format'); |
| 81 | 81 | |
| 82 | 82 | $res = $this->rsa_impl->loadKey($key->getEncoded()); |
| 83 | 83 | |
| 84 | - if(!$res) |
|
| 84 | + if (!$res) |
|
| 85 | 85 | throw new InvalidKeyTypeAlgorithmException('could not parse the key'); |
| 86 | 86 | |
| 87 | - if($this->rsa_impl->getSize() < $this->getMinKeyLen()) |
|
| 87 | + if ($this->rsa_impl->getSize() < $this->getMinKeyLen()) |
|
| 88 | 88 | throw new InvalidKeyTypeAlgorithmException('len is invalid'); |
| 89 | 89 | |
| 90 | 90 | return $this->rsa_impl->decrypt($enc_message); |
@@ -47,19 +47,23 @@ discard block |
||
| 47 | 47 | */ |
| 48 | 48 | public function encrypt(Key $key, $message) |
| 49 | 49 | { |
| 50 | - if(!($key instanceof RSAPublicKey)) |
|
| 51 | - throw new InvalidKeyTypeAlgorithmException('key is not public'); |
|
| 50 | + if(!($key instanceof RSAPublicKey)) { |
|
| 51 | + throw new InvalidKeyTypeAlgorithmException('key is not public'); |
|
| 52 | + } |
|
| 52 | 53 | |
| 53 | - if($key->getFormat() !== 'PKCS8') |
|
| 54 | - throw new InvalidKeyTypeAlgorithmException('keys is not on PKCS1 format'); |
|
| 54 | + if($key->getFormat() !== 'PKCS8') { |
|
| 55 | + throw new InvalidKeyTypeAlgorithmException('keys is not on PKCS1 format'); |
|
| 56 | + } |
|
| 55 | 57 | |
| 56 | 58 | $res = $this->rsa_impl->loadKey($key->getEncoded()); |
| 57 | 59 | |
| 58 | - if(!$res) |
|
| 59 | - throw new InvalidKeyTypeAlgorithmException('could not parse the key'); |
|
| 60 | + if(!$res) { |
|
| 61 | + throw new InvalidKeyTypeAlgorithmException('could not parse the key'); |
|
| 62 | + } |
|
| 60 | 63 | |
| 61 | - if($this->rsa_impl->getSize() < $this->getMinKeyLen()) |
|
| 62 | - throw new InvalidKeyTypeAlgorithmException('len is invalid'); |
|
| 64 | + if($this->rsa_impl->getSize() < $this->getMinKeyLen()) { |
|
| 65 | + throw new InvalidKeyTypeAlgorithmException('len is invalid'); |
|
| 66 | + } |
|
| 63 | 67 | |
| 64 | 68 | return $this->rsa_impl->encrypt($message); |
| 65 | 69 | } |
@@ -72,20 +76,24 @@ discard block |
||
| 72 | 76 | */ |
| 73 | 77 | public function decrypt(Key $key, $enc_message){ |
| 74 | 78 | |
| 75 | - if(!($key instanceof RSAPrivateKey)) |
|
| 76 | - throw new InvalidKeyTypeAlgorithmException('key is not private'); |
|
| 79 | + if(!($key instanceof RSAPrivateKey)) { |
|
| 80 | + throw new InvalidKeyTypeAlgorithmException('key is not private'); |
|
| 81 | + } |
|
| 77 | 82 | |
| 78 | 83 | |
| 79 | - if($key->getFormat() !== 'PKCS1') |
|
| 80 | - throw new InvalidKeyTypeAlgorithmException('keys is not on PKCS1 format'); |
|
| 84 | + if($key->getFormat() !== 'PKCS1') { |
|
| 85 | + throw new InvalidKeyTypeAlgorithmException('keys is not on PKCS1 format'); |
|
| 86 | + } |
|
| 81 | 87 | |
| 82 | 88 | $res = $this->rsa_impl->loadKey($key->getEncoded()); |
| 83 | 89 | |
| 84 | - if(!$res) |
|
| 85 | - throw new InvalidKeyTypeAlgorithmException('could not parse the key'); |
|
| 90 | + if(!$res) { |
|
| 91 | + throw new InvalidKeyTypeAlgorithmException('could not parse the key'); |
|
| 92 | + } |
|
| 86 | 93 | |
| 87 | - if($this->rsa_impl->getSize() < $this->getMinKeyLen()) |
|
| 88 | - throw new InvalidKeyTypeAlgorithmException('len is invalid'); |
|
| 94 | + if($this->rsa_impl->getSize() < $this->getMinKeyLen()) { |
|
| 95 | + throw new InvalidKeyTypeAlgorithmException('len is invalid'); |
|
| 96 | + } |
|
| 89 | 97 | |
| 90 | 98 | return $this->rsa_impl->decrypt($enc_message); |
| 91 | 99 | } |
@@ -1,16 +1,16 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright 2015 OpenStack Foundation |
|
| 4 | - * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 5 | - * you may not use this file except in compliance with the License. |
|
| 6 | - * You may obtain a copy of the License at |
|
| 7 | - * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 8 | - * Unless required by applicable law or agreed to in writing, software |
|
| 9 | - * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 10 | - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 11 | - * See the License for the specific language governing permissions and |
|
| 12 | - * limitations under the License. |
|
| 13 | - **/ |
|
| 3 | + * Copyright 2015 OpenStack Foundation |
|
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 5 | + * you may not use this file except in compliance with the License. |
|
| 6 | + * You may obtain a copy of the License at |
|
| 7 | + * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 8 | + * Unless required by applicable law or agreed to in writing, software |
|
| 9 | + * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 10 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 11 | + * See the License for the specific language governing permissions and |
|
| 12 | + * limitations under the License. |
|
| 13 | + **/ |
|
| 14 | 14 | |
| 15 | 15 | namespace jwa\cryptographic_algorithms\content_encryption; |
| 16 | 16 | |
@@ -1,16 +1,16 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright 2015 OpenStack Foundation |
|
| 4 | - * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 5 | - * you may not use this file except in compliance with the License. |
|
| 6 | - * You may obtain a copy of the License at |
|
| 7 | - * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 8 | - * Unless required by applicable law or agreed to in writing, software |
|
| 9 | - * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 10 | - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 11 | - * See the License for the specific language governing permissions and |
|
| 12 | - * limitations under the License. |
|
| 13 | - **/ |
|
| 3 | + * Copyright 2015 OpenStack Foundation |
|
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 5 | + * you may not use this file except in compliance with the License. |
|
| 6 | + * You may obtain a copy of the License at |
|
| 7 | + * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 8 | + * Unless required by applicable law or agreed to in writing, software |
|
| 9 | + * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 10 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 11 | + * See the License for the specific language governing permissions and |
|
| 12 | + * limitations under the License. |
|
| 13 | + **/ |
|
| 14 | 14 | |
| 15 | 15 | namespace jwa\cryptographic_algorithms\content_encryption\AES_CBC_HS\sha2; |
| 16 | 16 | |
@@ -1,16 +1,16 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright 2015 OpenStack Foundation |
|
| 4 | - * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 5 | - * you may not use this file except in compliance with the License. |
|
| 6 | - * You may obtain a copy of the License at |
|
| 7 | - * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 8 | - * Unless required by applicable law or agreed to in writing, software |
|
| 9 | - * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 10 | - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 11 | - * See the License for the specific language governing permissions and |
|
| 12 | - * limitations under the License. |
|
| 13 | - **/ |
|
| 3 | + * Copyright 2015 OpenStack Foundation |
|
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 5 | + * you may not use this file except in compliance with the License. |
|
| 6 | + * You may obtain a copy of the License at |
|
| 7 | + * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 8 | + * Unless required by applicable law or agreed to in writing, software |
|
| 9 | + * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 10 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 11 | + * See the License for the specific language governing permissions and |
|
| 12 | + * limitations under the License. |
|
| 13 | + **/ |
|
| 14 | 14 | |
| 15 | 15 | namespace jwa\cryptographic_algorithms\content_encryption\AES_CBC_HS\sha2; |
| 16 | 16 | |
@@ -1,16 +1,16 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright 2015 OpenStack Foundation |
|
| 4 | - * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 5 | - * you may not use this file except in compliance with the License. |
|
| 6 | - * You may obtain a copy of the License at |
|
| 7 | - * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 8 | - * Unless required by applicable law or agreed to in writing, software |
|
| 9 | - * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 10 | - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 11 | - * See the License for the specific language governing permissions and |
|
| 12 | - * limitations under the License. |
|
| 13 | - **/ |
|
| 3 | + * Copyright 2015 OpenStack Foundation |
|
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 5 | + * you may not use this file except in compliance with the License. |
|
| 6 | + * You may obtain a copy of the License at |
|
| 7 | + * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 8 | + * Unless required by applicable law or agreed to in writing, software |
|
| 9 | + * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 10 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 11 | + * See the License for the specific language governing permissions and |
|
| 12 | + * limitations under the License. |
|
| 13 | + **/ |
|
| 14 | 14 | |
| 15 | 15 | namespace jwa\cryptographic_algorithms\content_encryption\AES_CBC_HS\sha2; |
| 16 | 16 | |
@@ -1,16 +1,16 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright 2015 OpenStack Foundation |
|
| 4 | - * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 5 | - * you may not use this file except in compliance with the License. |
|
| 6 | - * You may obtain a copy of the License at |
|
| 7 | - * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 8 | - * Unless required by applicable law or agreed to in writing, software |
|
| 9 | - * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 10 | - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 11 | - * See the License for the specific language governing permissions and |
|
| 12 | - * limitations under the License. |
|
| 13 | - **/ |
|
| 3 | + * Copyright 2015 OpenStack Foundation |
|
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 5 | + * you may not use this file except in compliance with the License. |
|
| 6 | + * You may obtain a copy of the License at |
|
| 7 | + * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 8 | + * Unless required by applicable law or agreed to in writing, software |
|
| 9 | + * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 10 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 11 | + * See the License for the specific language governing permissions and |
|
| 12 | + * limitations under the License. |
|
| 13 | + **/ |
|
| 14 | 14 | |
| 15 | 15 | namespace jwa\cryptographic_algorithms\content_encryption\AES_CBC_HS; |
| 16 | 16 | |
@@ -90,10 +90,10 @@ discard block |
||
| 90 | 90 | // MAC_KEY = initial MAC_KEY_LEN octets of K |
| 91 | 91 | $mac_key = substr($key, 0, $mac_key_len); |
| 92 | 92 | /** |
| 93 | - * The octet string AL is equal to the number of bits in the |
|
| 94 | - * Additional Authenticated Data ($aad) expressed as a 64-bit unsigned |
|
| 95 | - * big-endian integer |
|
| 96 | - */ |
|
| 93 | + * The octet string AL is equal to the number of bits in the |
|
| 94 | + * Additional Authenticated Data ($aad) expressed as a 64-bit unsigned |
|
| 95 | + * big-endian integer |
|
| 96 | + */ |
|
| 97 | 97 | $al = ByteUtil::convert2UnsignedLongBE(strlen($aad) * 8); |
| 98 | 98 | // M = MAC(MAC_KEY, A || IV || E || AL) |
| 99 | 99 | $secured_input = implode('', array( |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | { |
| 61 | 61 | $key_len = strlen($key); |
| 62 | 62 | |
| 63 | - if($this->getMinKeyLen() > ByteUtil::bitLength($key_len)) |
|
| 63 | + if ($this->getMinKeyLen() > ByteUtil::bitLength($key_len)) |
|
| 64 | 64 | throw new InvalidKeyLengthAlgorithmException; |
| 65 | 65 | |
| 66 | 66 | $enc_key_len = $key_len / 2; |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | */ |
| 134 | 134 | public function decrypt($cypher_text, $key, $iv, $aad, $tag) |
| 135 | 135 | { |
| 136 | - if(!$this->checkAuthenticationTag($cypher_text, $key, $iv, $aad, $tag)) |
|
| 136 | + if (!$this->checkAuthenticationTag($cypher_text, $key, $iv, $aad, $tag)) |
|
| 137 | 137 | throw new InvalidAuthenticationTagException; |
| 138 | 138 | |
| 139 | 139 | $enc_key_len = strlen($key) / 2; |
@@ -60,8 +60,9 @@ discard block |
||
| 60 | 60 | { |
| 61 | 61 | $key_len = strlen($key); |
| 62 | 62 | |
| 63 | - if($this->getMinKeyLen() > ByteUtil::bitLength($key_len)) |
|
| 64 | - throw new InvalidKeyLengthAlgorithmException; |
|
| 63 | + if($this->getMinKeyLen() > ByteUtil::bitLength($key_len)) { |
|
| 64 | + throw new InvalidKeyLengthAlgorithmException; |
|
| 65 | + } |
|
| 65 | 66 | |
| 66 | 67 | $enc_key_len = $key_len / 2; |
| 67 | 68 | // ENC_KEY = final ENC_KEY_LEN octets of K |
@@ -133,8 +134,9 @@ discard block |
||
| 133 | 134 | */ |
| 134 | 135 | public function decrypt($cypher_text, $key, $iv, $aad, $tag) |
| 135 | 136 | { |
| 136 | - if(!$this->checkAuthenticationTag($cypher_text, $key, $iv, $aad, $tag)) |
|
| 137 | - throw new InvalidAuthenticationTagException; |
|
| 137 | + if(!$this->checkAuthenticationTag($cypher_text, $key, $iv, $aad, $tag)) { |
|
| 138 | + throw new InvalidAuthenticationTagException; |
|
| 139 | + } |
|
| 138 | 140 | |
| 139 | 141 | $enc_key_len = strlen($key) / 2; |
| 140 | 142 | // ENC_KEY = final ENC_KEY_LEN octets of K |
@@ -1,16 +1,16 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright 2015 OpenStack Foundation |
|
| 4 | - * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 5 | - * you may not use this file except in compliance with the License. |
|
| 6 | - * You may obtain a copy of the License at |
|
| 7 | - * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 8 | - * Unless required by applicable law or agreed to in writing, software |
|
| 9 | - * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 10 | - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 11 | - * See the License for the specific language governing permissions and |
|
| 12 | - * limitations under the License. |
|
| 13 | - **/ |
|
| 3 | + * Copyright 2015 OpenStack Foundation |
|
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 5 | + * you may not use this file except in compliance with the License. |
|
| 6 | + * You may obtain a copy of the License at |
|
| 7 | + * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 8 | + * Unless required by applicable law or agreed to in writing, software |
|
| 9 | + * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 10 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 11 | + * See the License for the specific language governing permissions and |
|
| 12 | + * limitations under the License. |
|
| 13 | + **/ |
|
| 14 | 14 | |
| 15 | 15 | namespace jwa; |
| 16 | 16 | |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | /** |
| 130 | 130 | * AES Key Wrap using 256-bit key |
| 131 | 131 | */ |
| 132 | - const A256KW= 'A256KW'; |
|
| 132 | + const A256KW = 'A256KW'; |
|
| 133 | 133 | |
| 134 | 134 | /** |
| 135 | 135 | * Direct use of a shared symmetric key |
@@ -216,43 +216,41 @@ discard block |
||
| 216 | 216 | */ |
| 217 | 217 | const A256GCM = 'A256GCM'; |
| 218 | 218 | |
| 219 | - public static $header_location_alg = array |
|
| 220 | - ( |
|
| 219 | + public static $header_location_alg = array( |
|
| 221 | 220 | self::HS256, |
| 222 | 221 | self::HS384, |
| 223 | 222 | self::HS512, |
| 224 | 223 | self::RS256, |
| 225 | 224 | self::RS384, |
| 226 | 225 | self::RS512, |
| 227 | - self::ES256 , |
|
| 226 | + self::ES256, |
|
| 228 | 227 | self::ES384, |
| 229 | - self::ES512 , |
|
| 228 | + self::ES512, |
|
| 230 | 229 | self::PS256, |
| 231 | - self::PS384 , |
|
| 230 | + self::PS384, |
|
| 232 | 231 | self::PS512, |
| 233 | 232 | self::None, |
| 234 | 233 | self::RSA1_5, |
| 235 | - self::RSA_OAEP , |
|
| 234 | + self::RSA_OAEP, |
|
| 236 | 235 | self::RSA_OAEP_256, |
| 237 | - self::A128KW , |
|
| 236 | + self::A128KW, |
|
| 238 | 237 | self::A192KW, |
| 239 | 238 | self::A192KW, |
| 240 | 239 | self::A256KW, |
| 241 | 240 | self::Dir, |
| 242 | 241 | self::ECDH_ES, |
| 243 | - self::ECDH_ES_A128KW , |
|
| 242 | + self::ECDH_ES_A128KW, |
|
| 244 | 243 | self::ECDH_ES_A192KW, |
| 245 | - self::ECDH_ES_A256KW , |
|
| 246 | - self::A128GCMKW , |
|
| 244 | + self::ECDH_ES_A256KW, |
|
| 245 | + self::A128GCMKW, |
|
| 247 | 246 | self::A192GCMKW, |
| 248 | - self::A256GCMKW , |
|
| 249 | - self::PBES2_HS256_A128KW , |
|
| 247 | + self::A256GCMKW, |
|
| 248 | + self::PBES2_HS256_A128KW, |
|
| 250 | 249 | self::PBES2_HS384_A192KW, |
| 251 | 250 | self::PBES2_HS512_A256KW, |
| 252 | 251 | ); |
| 253 | 252 | |
| 254 | - public static $header_location_enc = array |
|
| 255 | - ( |
|
| 253 | + public static $header_location_enc = array( |
|
| 256 | 254 | self::A128CBC_HS256, |
| 257 | 255 | self::A192CBC_HS384, |
| 258 | 256 | self::A256CBC_HS512, |
@@ -1,16 +1,16 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright 2015 OpenStack Foundation |
|
| 4 | - * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 5 | - * you may not use this file except in compliance with the License. |
|
| 6 | - * You may obtain a copy of the License at |
|
| 7 | - * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 8 | - * Unless required by applicable law or agreed to in writing, software |
|
| 9 | - * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 10 | - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 11 | - * See the License for the specific language governing permissions and |
|
| 12 | - * limitations under the License. |
|
| 13 | - **/ |
|
| 3 | + * Copyright 2015 OpenStack Foundation |
|
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 5 | + * you may not use this file except in compliance with the License. |
|
| 6 | + * You may obtain a copy of the License at |
|
| 7 | + * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 8 | + * Unless required by applicable law or agreed to in writing, software |
|
| 9 | + * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 10 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 11 | + * See the License for the specific language governing permissions and |
|
| 12 | + * limitations under the License. |
|
| 13 | + **/ |
|
| 14 | 14 | |
| 15 | 15 | namespace jwt; |
| 16 | 16 | |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | * @param string $name |
| 45 | 45 | * @param JsonValue $value |
| 46 | 46 | */ |
| 47 | - public function __construct($name , $value){ |
|
| 47 | + public function __construct($name, $value) { |
|
| 48 | 48 | $this->name = $name; |
| 49 | 49 | $this->value = $value; |
| 50 | 50 | } |
@@ -53,21 +53,21 @@ discard block |
||
| 53 | 53 | /** |
| 54 | 54 | * @return string |
| 55 | 55 | */ |
| 56 | - public function getName(){ |
|
| 56 | + public function getName() { |
|
| 57 | 57 | return $this->name; |
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | /** |
| 61 | 61 | * @return JsonValue |
| 62 | 62 | */ |
| 63 | - public function getValue(){ |
|
| 63 | + public function getValue() { |
|
| 64 | 64 | return $this->value; |
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | /** |
| 68 | 68 | * @return array|bool|int|string|\utils\json_types\IJsonObject |
| 69 | 69 | */ |
| 70 | - public function getRawValue(){ |
|
| 70 | + public function getRawValue() { |
|
| 71 | 71 | return $this->getValue()->getValue(); |
| 72 | 72 | } |
| 73 | 73 | |