89 lines
3.5 KiB
Markdown
89 lines
3.5 KiB
Markdown
|
php-encryption
|
||
|
===============
|
||
|
|
||
|
[![Build Status](https://travis-ci.org/defuse/php-encryption.svg?branch=master)](https://travis-ci.org/defuse/php-encryption)
|
||
|
|
||
|
This is a library for encrypting data with a key or password in PHP. **It
|
||
|
requires PHP 5.4 or newer.** The current version is v2.0.0, which is expected to
|
||
|
remain stable and supported by its authors with security and bugfixes until at
|
||
|
least January 1st, 2019.
|
||
|
|
||
|
The library is a joint effort between [Taylor Hornby](https://defuse.ca/) and
|
||
|
[Scott Arciszewski](https://paragonie.com/blog/author/scott-arcizewski) as well
|
||
|
as numerous open-source contributors.
|
||
|
|
||
|
What separates this library from other PHP encryption libraries is, firstly,
|
||
|
that it is secure. The authors used to encounter insecure PHP encryption code on
|
||
|
a daily basis, so they created this library to bring more security to the
|
||
|
ecosystem. Secondly, this library is "difficult to misuse." Like
|
||
|
[libsodium](https://github.com/jedisct1/libsodium), its API is designed to be
|
||
|
easy to use in a secure way and hard to use in an insecure way.
|
||
|
|
||
|
Dependencies
|
||
|
------------
|
||
|
|
||
|
This library requres no special dependencies except for PHP 5.4 or newer with
|
||
|
the OpenSSL extensions enabled (this is the default). It uses
|
||
|
[random\_compat](https://github.com/paragonie/random_compat), which is bundled
|
||
|
in with this library so that your users will not need to follow any special
|
||
|
installation steps.
|
||
|
|
||
|
Getting Started
|
||
|
----------------
|
||
|
|
||
|
Start with the [**Tutorial**](docs/Tutorial.md). You can find instructions for
|
||
|
obtaining this library's code securely in the [Installing and
|
||
|
Verifying](docs/InstallingAndVerifying.md) documentation.
|
||
|
|
||
|
After you've read the tutorial and got the code, refer to the formal
|
||
|
documentation for each of the classes this library provides:
|
||
|
|
||
|
- [Crypto](docs/classes/Crypto.md)
|
||
|
- [File](docs/classes/File.md)
|
||
|
- [Key](docs/classes/Key.md)
|
||
|
- [KeyProtectedByPassword](docs/classes/KeyProtectedByPassword.md)
|
||
|
|
||
|
If you encounter difficulties, see the [FAQ](docs/FAQ.md) answers. The fixes to
|
||
|
the most commonly-reported problems are explained there.
|
||
|
|
||
|
If you're a cryptographer and want to understand the nitty-gritty details of how
|
||
|
this library works, look at the [Cryptography Details](docs/CryptoDetails.md)
|
||
|
documentation.
|
||
|
|
||
|
If you're interested in contributing to this library, see the [Internal
|
||
|
Developer Documentation](docs/InternalDeveloperDocs.md).
|
||
|
|
||
|
Examples
|
||
|
---------
|
||
|
|
||
|
If the documentation is not enough for you to understand how to use this
|
||
|
library, then you can look at an example project that uses this library:
|
||
|
|
||
|
- [encutil](https://github.com/defuse/encutil)
|
||
|
- [fileencrypt](https://github.com/tsusanka/fileencrypt)
|
||
|
|
||
|
Security Audit Status
|
||
|
---------------------
|
||
|
|
||
|
This code has not been subjected to a formal, paid, security audit. However, it
|
||
|
has received lots of review from members of the PHP security community, and the
|
||
|
authors are experienced with cryptography. In all likelihood, you are safer
|
||
|
using this library than almost any other encryption library for PHP.
|
||
|
|
||
|
If you use this library as a part of your business and would like to help fund
|
||
|
a formal audit, please [contact Taylor Hornby](https://defuse.ca/contact.htm).
|
||
|
|
||
|
Public Keys
|
||
|
------------
|
||
|
|
||
|
The GnuPG public key used to sign releases is available in
|
||
|
[dist/signingkey.asc](https://github.com/defuse/php-encryption/raw/master/dist/signingkey.asc). Its fingerprint is:
|
||
|
|
||
|
```
|
||
|
2FA6 1D8D 99B9 2658 6BAC 3D53 385E E055 A129 1538
|
||
|
```
|
||
|
|
||
|
You can verify it against the Taylor Hornby's [contact
|
||
|
page](https://defuse.ca/contact.htm) and
|
||
|
[twitter](https://twitter.com/DefuseSec/status/723741424253059074).
|