diff --git a/src/Resources/doc/commands.md b/src/Resources/doc/commands.md index cfd592ec..5a6b6590 100644 --- a/src/Resources/doc/commands.md +++ b/src/Resources/doc/commands.md @@ -25,7 +25,7 @@ DoctrineEncrypt\Entity\UserDetail has 13 properties which are encrypted. You can use the comment `doctrine:encrypt:database [encryptor]` to encrypt the current database. * Optional parameter [encryptor] - * An encryptor provided by the bundle (Defuse or Halite) or your own [encryption class](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/custom_encryptor.md). + * An encryptor provided by the bundle (Defuse or Halite) or your own [encryption class](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/custom_encryptor.md). * Default: Your encryptor set in the configuration file or the default encryption class when not set in the configuration file ``` @@ -54,7 +54,7 @@ Encryption finished values encrypted: 203 values. You can use the comment `doctrine:decrypt:database [encryptor]` to decrypt the current database. * Optional parameter [encryptor] - * An encryptor provided by the bundle (Defuse or Halite) or your own [encryption class](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/custom_encryptor.md). + * An encryptor provided by the bundle (Defuse or Halite) or your own [encryption class](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/custom_encryptor.md). * Default: Your encryptor set in the configuration file or the default encryption class when not set in the configuration file ``` @@ -81,4 +81,4 @@ Decryption finished entities found: 26, decrypted 195 values. You may want to use your own encryption class learn how here: -#### [Custom encryption class](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/custom_encryptor.md) +#### [Custom encryption class](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/custom_encryptor.md) \ No newline at end of file diff --git a/src/Resources/doc/configuration.md b/src/Resources/doc/configuration.md index 4b027532..79097800 100644 --- a/src/Resources/doc/configuration.md +++ b/src/Resources/doc/configuration.md @@ -4,7 +4,7 @@ There is only 1 paramater in the configuration of the Doctrine encryption bundle This parameter is also optional. * **encryptor_class** - Custom class for encrypting data - * Encryptor class, [your own encryptor class](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/custom_encryptor.md) will override encryptor paramater + * Encryptor class, [your own encryptor class](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/custom_encryptor.md) will override encryptor paramater * Default: Halite ## yaml @@ -24,4 +24,4 @@ composer require "defuse/php-encryption ^2.0" ## Usage Read how to use the database encryption bundle in your project. -#### [Usage](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/usage.md) +#### [Usage](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/usage.md) diff --git a/src/Resources/doc/custom_encryptor.md b/src/Resources/doc/custom_encryptor.md index c79cdc19..7ed13de0 100644 --- a/src/Resources/doc/custom_encryptor.md +++ b/src/Resources/doc/custom_encryptor.md @@ -4,4 +4,4 @@ We can imagine that you want to use your own encryption class, and while that se That being said, you can add custom Encryptor classes to Ambta/DoctrineEncryptBundle/Encryptors to implement your own favorite library. -#### [Back to index](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/index.md) +#### [Back to index](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/index.md) diff --git a/src/Resources/doc/example_of_usage.md b/src/Resources/doc/example_of_usage.md index 47478724..2fdab0e6 100644 --- a/src/Resources/doc/example_of_usage.md +++ b/src/Resources/doc/example_of_usage.md @@ -137,4 +137,4 @@ So our information is encrypted, and unless someone has your .DefuseEncryptor.ke You need `DoctrineFixturesBundle` and `defuse/php-encryption` extension for this example -#### [Back to index](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/index.md) +#### [Back to index](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/index.md) diff --git a/src/Resources/doc/index.md b/src/Resources/doc/index.md index 60493c82..5830f342 100644 --- a/src/Resources/doc/index.md +++ b/src/Resources/doc/index.md @@ -5,8 +5,8 @@ All encryption/decryption work on the server side. The following documents are available: -* [Installation](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/installation.md) -* [Configuration](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/configuration.md) -* [Usage](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/usage.md) -* [Console commands](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/commands.md) -* [Custom encryptor class](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/custom_encryptor.md) +* [Installation](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/installation.md) +* [Configuration](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/configuration.md) +* [Usage](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/usage.md) +* [Console commands](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/commands.md) +* [Custom encryptor class](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/custom_encryptor.md) diff --git a/src/Resources/doc/installation.md b/src/Resources/doc/installation.md index bbea9e85..0a80a193 100644 --- a/src/Resources/doc/installation.md +++ b/src/Resources/doc/installation.md @@ -51,4 +51,4 @@ public function registerBundles() All configuration value's are optional. On the following page you can find the configuration information. -#### [Configuration](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/configuration.md) +#### [Configuration](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/configuration.md) diff --git a/src/Resources/doc/usage.md b/src/Resources/doc/usage.md index 33280606..9cb923b7 100644 --- a/src/Resources/doc/usage.md +++ b/src/Resources/doc/usage.md @@ -38,4 +38,4 @@ We keep an prefix to check if data is encrypted or not so, unencrypted dat There are some console commands that can help you encrypt your existing database or change encryption methods. Read more about the database encryption commands provided with this bundle. -#### [Console commands](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/Resources/doc/commands.md) +#### [Console commands](https://github.com/michaeldegroot/DoctrineEncryptBundle/blob/master/src/Resources/doc/commands.md)