Download the PHP package manojx/encrypter-bundle without Composer

On this page you can find all versions of the php package manojx/encrypter-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package encrypter-bundle

Encrypter Symfony Bundle

Purpose

The Encrypter Bundle provides a simple and secure way to encrypt and decrypt data using the AES-256-CBC encryption algorithm. This bundle is designed for Symfony applications, allowing developers to protect sensitive information with ease. With built-in support for key generation and salt handling, the Encrypter Bundle helps ensure that your data remains secure.

Features

Installation

To install the Encrypter Bundle, run the following command:

Configuration

To configure the Encrypter Bundle, you need to create a configuration file. Follow these steps:

  1. Create the Configuration File: Navigate to the config/packages directory of your Symfony project and create a new file named encrypter.yaml.

  2. Add Configuration Content: Open the newly created encrypter.yaml file in your text editor and add the following content:

Ensure that the secret key is either 16, 32, or 64 bytes long. This key will be used for encryption and decryption operations.

Available Methods

The Encrypter Bundle provides several methods for encryption, decryption, key generation, and salt generation. Below is a list of each method along with a brief description:

encrypt(string $data, ?string $salt = null): string

Encrypts the given data using the AES-256-CBC encryption algorithm.

decrypt(string $data, ?string $salt = null): string

Decrypts the given encrypted data.

generateEncryptionKey(int $length = 32): string

Generates a random encryption key.

generateSalt(int $length = 16): string

Generates a random salt.

Usage

To use the Encrypter Bundle in your Symfony application, you can inject the EncrypterInterface into your services or controllers. Here's an example of how you can encrypt and decrypt data:


All versions of encrypter-bundle with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4 || ^8.0
symfony/framework-bundle Version ^5.4 || ^6.1 || ^7.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package manojx/encrypter-bundle contains the following files

Loading the files please wait ....