Skip to content

Repository files navigation

Library StatusLatest Stable VersionLatest Unstable VersionLicense

Summary

The crypt package creates a simple interface for the phpseclib AES-128 library. Its interface allows encryption and decryption of strings with a layer of base64 encoding for easy transmission including the initialization vector.

Installation

composer require crowdstar/crypt:~2.0.0

Sample Usage

Before using the library, you need to choose a secret key, which should be of size 16, 24 or 32 only.

<?php$secretKey = "1234567890123456";

1. Encrypt and Encode plain text data for storage or transmission

<?phpuseCrowdStar\Crypt\Crypt;
$encodedEncryptedData = (newCrypt($secretKey))->encrypt("message");

2. Decoding and Decrypting stored or received data

<?phpuseCrowdStar\Crypt\Crypt;
$encodedEncryptedData = (newCrypt($secretKey))->decrypt("encoded_encrypted_data");

3. Encrypting and Decrypting with an alternate length initialization vector

<?phpuseCrowdStar\Crypt\Crypt;
$crypt = newCrypt($secretKey);
$alternateIVLength = 8;
$encodedEncryptedData = $crypt->encrypt("message", $alternateIVLength);
$plainText = $crypt->decrypt($encodedEncryptedData, $alternateIVLength);

When bad data is passed in, the return value of method call CrowdStar\Crypt\Crypt::decrypt() will be an empty string.

About

Handle data encryption/decryption using AES-128, encode with initialization vector.

Topics

Resources

Stars

2 stars

Watchers

6 watching

Forks

Releases

Used by

Contributors

Languages