Coder Social home page Coder Social logo

devwithkunal / php-encrypt-decrypt-class Goto Github PK

View Code? Open in Web Editor NEW
3.0 1.0 0.0 2 KB

Simple, easy-to-use and effective PHP Encryption class. It's a standalone single file PHP class to use on your projects.

License: MIT License

PHP 100.00%
openssl php php-encode php-encryption

php-encrypt-decrypt-class's Introduction

PHP Encrypt/Decrypt Class

Simple, easy-to-use and effective PHP Encryption class. It's a standalone single file PHP class to use on your projects. It requires no dependencies or no framework.

How To Use

You only need only one file:

  • Encryption.php

You can run everything from the index.php file, see the file for usage.

Step 1 - Initialize

// Include the class file
require 'Encryption.php';

// Set a secret key
const KEY = 'secretkey';

// Message string to encode
$message = 'Hello world';

Step 2 - Encrypt

$encoded_text = Encryption::Encode($message, KEY);
//@return d1pXc2dsYVBqQ0NrSkJ1Zy85RWprUT09

Step 3 - Decrypt

$decoded_text = Encryption::Decode($encoded_text, KEY);
//@return Hello world

More

  • This code uses openssl for encrypt & decrypt data. See PHP Manual for more information.
  • Default encryption method is AES-256-CBC. You can change it on Encryption.php file at line 14 & 29. Or you can enter it as thrid parameter on both static mathods.

LICENSE

MIT License

php-encrypt-decrypt-class's People

Contributors

devwithkunal avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.