Skip to content

Commit 606645d

Browse files
committed
Merge branch 'v2.0'
2 parents 522859f + 7c409ee commit 606645d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+11583
-1014
lines changed

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/.gitattributes export-ignore
2+
/.travis.yml export-ignore

.gitignore

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
*~
2+
/test/unit/File/big-generated-file
3+
/composer.lock
4+
/vendor
5+
defuse-crypto.phar
6+
defuse-crypto.phar.sig
7+
composer.phar
8+
box.phar
9+
phpunit.phar
10+
phpunit.phar.asc
11+
test/unit/File/tmp

.php_cs

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<?php
2+
3+
$config = Symfony\CS\Config\Config::create()
4+
->level(Symfony\CS\FixerInterface::PSR2_LEVEL)
5+
->fixers([
6+
'blankline_after_open_tag',
7+
'empty_return',
8+
'extra_empty_lines',
9+
'function_typehint_space',
10+
'join_function',
11+
'method_argument_default_value',
12+
'multiline_array_trailing_comma',
13+
'no_blank_lines_after_class_opening',
14+
'no_empty_lines_after_phpdocs',
15+
'phpdoc_indent',
16+
'phpdoc_no_access',
17+
'phpdoc_no_empty_return',
18+
'phpdoc_no_package',
19+
'phpdoc_params',
20+
'phpdoc_scalar',
21+
'phpdoc_separation',
22+
'phpdoc_trim',
23+
'phpdoc_type_to_var',
24+
'phpdoc_types',
25+
'phpdoc_var_without_name',
26+
'remove_leading_slash_use',
27+
'remove_lines_between_uses',
28+
'short_bool_cast',
29+
'single_quote',
30+
'spaces_after_semicolon',
31+
'spaces_before_semicolon',
32+
'spaces_cast',
33+
'standardize_not_equal',
34+
'ternary_spaces',
35+
'trim_array_spaces',
36+
'unneeded_control_parentheses',
37+
'unused_use',
38+
'whitespacy_lines',
39+
'align_double_arrow',
40+
'concat_with_spaces',
41+
'logical_not_operators_with_successor_space',
42+
'multiline_spaces_before_semicolon',
43+
'newline_after_open_tag',
44+
'ordered_use',
45+
'php_unit_construct',
46+
'phpdoc_order',
47+
'short_array_syntax',
48+
]);
49+
50+
if (null === $input->getArgument('path')) {
51+
$config
52+
->finder(
53+
Symfony\CS\Finder\DefaultFinder::create()
54+
->in('src/')
55+
->in('other/')
56+
->in('test/')
57+
->filter(
58+
function (\SplFileInfo $file) {
59+
return strpos($file->getRelativePathname(), 'random_compat') === FALSE;
60+
}
61+
)
62+
);
63+
}
64+
65+
return $config;

.travis.yml

+10-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,14 @@ sudo: false
99

1010
matrix:
1111
fast_finish: true
12-
allow_failures:
13-
- php: "7.0"
1412

15-
script: ./test.sh
13+
install:
14+
- composer install
15+
- curl -LSs https://box-project.github.io/box2/installer.php | php
16+
- mkdir ~/box
17+
- mv box.phar ~/box/box
18+
19+
script:
20+
- ./test.sh
21+
- PATH=$PATH:~/box/ make -C dist/ build-phar
22+
- ./test.sh dist/defuse-crypto.phar

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2016 Taylor Hornby <https://defuse.ca> and Paragon Initiative
4+
Enterprises <https://paragonie.com>.
5+
6+
Permission is hereby granted, free of charge, to any person obtaining a copy of
7+
this software and associated documentation files (the "Software"), to deal in
8+
the Software without restriction, including without limitation the rights to
9+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
10+
the Software, and to permit persons to whom the Software is furnished to do so,
11+
subject to the following conditions:
12+
13+
The above copyright notice and this permission notice shall be included in all
14+
copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
18+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
19+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
20+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+61-64
Original file line numberDiff line numberDiff line change
@@ -3,88 +3,85 @@ php-encryption
33

44
[![Build Status](https://travis-ci.org/defuse/php-encryption.svg?branch=master)](https://travis-ci.org/defuse/php-encryption)
55

6-
This is a class for doing symmetric encryption in PHP. **Requires PHP 5.4 or newer.**
6+
This is a library for encrypting data with a key or password in PHP. **It
7+
requires PHP 5.4 or newer.** The current version is v2.0.0, which is expected to
8+
remain stable and supported by its authors with security and bugfixes until at
9+
least January 1st, 2019.
710

8-
Implementation
9-
--------------
11+
The library is a joint effort between [Taylor Hornby](https://defuse.ca/) and
12+
[Scott Arciszewski](https://paragonie.com/blog/author/scott-arcizewski) as well
13+
as numerous open-source contributors.
1014

11-
Messages are encrypted with AES-128 in CBC mode and are authenticated with
12-
HMAC-SHA256 (Encrypt-then-Mac). PKCS7 padding is used to pad the message to
13-
a multiple of the block size. HKDF is used to split the user-provided key into
14-
two keys: one for encryption, and the other for authentication. It is
15-
implemented using the `openssl_` and `hash_hmac` functions.
15+
What separates this library from other PHP encryption libraries is, firstly,
16+
that it is secure. The authors used to encounter insecure PHP encryption code on
17+
a daily basis, so they created this library to bring more security to the
18+
ecosystem. Secondly, this library is "difficult to misuse." Like
19+
[libsodium](https://github.com/jedisct1/libsodium), its API is designed to be
20+
easy to use in a secure way and hard to use in an insecure way.
1621

17-
Audit Status
18-
-------------
22+
Dependencies
23+
------------
1924

20-
This code has not been subjected to a formal, paid, security audit. However, it
21-
has received some informal review from members of the PHP security community.
22-
23-
As the author of this library, I take security very seriously and always opt to
24-
not implement a feature unless I am confident that I can do so without
25-
introducing security bugs. I take particular care to ensure the library is hard
26-
to use in an insecure way, even by someone who is not experienced in
27-
cryptography.
28-
29-
This library considers many edge cases that most PHP encryption libraries do not
30-
handle correctly. In all likelihood, you are safer using this library than
31-
almost any other encryption library for PHP.
32-
33-
If you use this library as a part of your business and would like to fund (or
34-
help fund) a formal audit, I would be very grateful.
25+
This library requres no special dependencies except for PHP 5.4 or newer with
26+
the OpenSSL extensions enabled (this is the default). It uses
27+
[random\_compat](https://github.com/paragonie/random_compat), which is bundled
28+
in with this library so that your users will not need to follow any special
29+
installation steps.
3530

36-
Philosophy
37-
-----------
31+
Getting Started
32+
----------------
3833

39-
This library was created after noticing how much insecure PHP encryption code
40-
there is. I once did a Google search for "php encryption" and found insecure
41-
code or advice on 9 of the top 10 results.
34+
Start with the [**Tutorial**](docs/Tutorial.md). You can find instructions for
35+
obtaining this library's code securely in the [Installing and
36+
Verifying](docs/InstallingAndVerifying.md) documentation.
4237

43-
Encryption is becoming an essential component of modern websites. This library
44-
aims to fulfil a subset of that need: Authenticated symmetric encryption of
45-
short strings, given a random key.
38+
After you've read the tutorial and got the code, refer to the formal
39+
documentation for each of the classes this library provides:
4640

47-
This library is developed around several core values:
41+
- [Crypto](docs/classes/Crypto.md)
42+
- [File](docs/classes/File.md)
43+
- [Key](docs/classes/Key.md)
44+
- [KeyProtectedByPassword](docs/classes/KeyProtectedByPassword.md)
4845

49-
- Rule #1: Security is prioritized over everything else.
46+
If you encounter difficulties, see the [FAQ](docs/FAQ.md) answers. The fixes to
47+
the most commonly-reported problems are explained there.
5048

51-
> Whenever there is a conflict between security and some other property,
52-
> security will be favored. For example, the library has runtime tests,
53-
> which make it slower, but will hopefully stop it from encrypting stuff
54-
> if the platform it's running on is broken.
49+
If you're a cryptographer and want to understand the nitty-gritty details of how
50+
this library works, look at the [Cryptography Details](docs/CryptoDetails.md)
51+
documentation.
5552

56-
- Rule #2: It should be difficult to misuse the library.
53+
If you're interested in contributing to this library, see the [Internal
54+
Developer Documentation](docs/InternalDeveloperDocs.md).
5755

58-
> We assume the developers using this library have no experience with
59-
> cryptography. We only assume that they know that the "key" is something
60-
> you need to encrypt and decrypt the messages, and that it must be
61-
> protected. Whenever possible, the library should refuse to encrypt or
62-
> decrypt messages when it is not being used correctly.
56+
Examples
57+
---------
6358

64-
- Rule #3: The library aims only to be compatible with itself.
59+
If the documentation is not enough for you to understand how to use this
60+
library, then you can look at an example project that uses this library:
6561

66-
> Other PHP encryption libraries try to support every possible type of
67-
> encryption, even the insecure ones (e.g. ECB mode). Because there are so
68-
> many options, inexperienced developers must make decisions between
69-
> things like "CBC" mode and "ECB" mode, knowing nothing about either one,
70-
> which inevitably creates vulnerabilities.
62+
- [encutil](https://github.com/defuse/encutil)
7163

72-
> This library will only support one secure mode. A developer using this
73-
> library will call "encrypt" and "decrypt" not caring about how they are
74-
> implemented.
64+
Security Audit Status
65+
---------------------
7566

76-
- Rule #4: The library should require no special installation.
67+
This code has not been subjected to a formal, paid, security audit. However, it
68+
has received lots of review from members of the PHP security community, and the
69+
authors are experienced with cryptography. In all likelihood, you are safer
70+
using this library than almost any other encryption library for PHP.
7771

78-
> Some PHP encryption libraries, like libsodium-php [1], are not
79-
> straightforward to install and cannot packaged with "just download and
80-
> extract" applications. This library will always be just a handful of PHP
81-
> files that you can copy to your source tree and require().
72+
If you use this library as a part of your business and would like to help fund
73+
a formal audit, please [contact Taylor Hornby](https://defuse.ca/contact.htm).
8274

83-
References:
75+
Public Keys
76+
------------
8477

85-
[1] https://github.com/jedisct1/libsodium-php
78+
The GnuPG public key used to sign releases is available in
79+
[other/signingkey.asc](other/signingkey.asc). Its fingerprint is:
8680

87-
Authors
88-
---------
81+
```
82+
2FA6 1D8D 99B9 2658 6BAC 3D53 385E E055 A129 1538
83+
```
8984

90-
This library is authored by Taylor Hornby and Scott Arciszewski.
85+
You can verify it against the Taylor Hornby's [contact
86+
page](https://defuse.ca/contact.htm) and
87+
[twitter](https://twitter.com/DefuseSec/status/723741424253059074).

autoload.php

-38
This file was deleted.

benchmark.php

-41
This file was deleted.

composer.json

+14-4
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,24 @@
77
"authors": [
88
{
99
"name": "Taylor Hornby",
10-
"email": "[email protected]"
10+
"email": "[email protected]",
11+
"homepage": "https://defuse.ca/"
12+
},
13+
{
14+
"name": "Scott Arciszewski",
15+
"email": "[email protected]",
16+
"homepage": "https://paragonie.com"
1117
}
1218
],
1319
"autoload": {
14-
"files": ["autoload.php"]
20+
"classmap": ["src"]
1521
},
1622
"require": {
17-
"php": ">=5.4.0",
18-
"ext-openssl": "*"
23+
"paragonie/random_compat": "~2.0",
24+
"ext-openssl": "*",
25+
"php": ">=5.4.0"
26+
},
27+
"require-dev": {
28+
"nikic/php-parser": "^2.0"
1929
}
2030
}

0 commit comments

Comments
 (0)